Delete the specific note
To delete the requested note, that the logged in user has access and permission to delete
Path parameters
-
The ID of the note to delete.
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"
}