Skip to main content
DELETE
/
conversations
/
{id}
/
notes
/
{note_id}
Delete a note
curl --request DELETE \
  --url https://api.getfernand.com/conversations/{id}/notes/{note_id} \
  --header 'X-API-Key: <api-key>'
{
  "error": "<string>"
}
Permanently removes a note from a conversation. Only the author of the note can delete it. If the note is the last entry in the conversation, the entire conversation is also deleted. This action cannot be undone.

Authorizations

X-API-Key
string
header
required

Authenticate your account by including your secret key in API requests. You can manage your API keys in the Dashboard.

Authentication to the API is performed by using the HTTP Header X-API-Key.

Path Parameters

id
integer<int64>
required

ID of the conversation containing the note.

note_id
integer<int64>
required

ID of the note to delete.

Response

Note deleted successfully (no content returned).