Delete a note

DELETE /api/note

Spaces method and path for this operation:

delete /s/{space_id}/api/note

Refer to Spaces for more information.

Delete a note from a Timeline using the note ID.

application/json

Body object | null Required

The ID of the note to delete.

One of:

Responses

  • 200 application/json

    Indicates the note was successfully deleted.

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