Delete a note

DELETE /api/note

Delete a note from a Timeline using the note ID.

application/json

Body object | null Required

The ID of the note to delete.

Responses

  • 200 application/json

    Indicates the note was successfully deleted.

    Hide response attribute Show response attribute object
DELETE /api/note
curl \
 --request DELETE 'https://localhost:5601/api/note' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"noteId":"string"}'
OSZAR »