Delete the specific note

DELETE /notes/{noteid}

To delete the requested note, that the logged in user has access and permission to delete

Path parameters

  • noteid integer Required

    The ID of the note to delete.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • success string
    • note_id integer

      The ID of the note just deleted - same as the original note id

  • 400

    Error

    Hide response attribute Show response attribute object
DELETE /notes/{noteid}
curl \
 -X DELETE https://YOURSITE.infoodle.com/apiv2/notes/{noteid} \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "success": "ok",
  "note_id": 150
}
Response examples (400)
{
  "error": "Error deleting the note"
}