Skip to main content
DELETE
/
v2
/
notes
/
{id}
Delete a note
curl --request DELETE \
  --url https://client-api.salesfinity.co/v2/notes/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "user_id": "507f1f77bcf86cd799439011"
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.salesfinity.ai/llms.txt

Use this file to discover all available pages before exploring further.

Deletes an existing note.
Only the original author may delete a note.

Path Parameters

  • id (required, string): Note ID, from List Notes.

Request Body

FieldTypeRequiredDescription
user_idstringYesID of the team member performing the delete. Must match the original author of the note.

Example Request

{
  "user_id": "507f1f77bcf86cd799439033"
}

Response (200)

{
  "success": true
}

Errors

StatusDescription
403Only the author can delete this note
404Note not found

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

Note ID

Body

application/json
user_id
string
required

ID of the team member performing the delete. Must match the original author of the note.

Example:

"507f1f77bcf86cd799439011"

Response

Note deleted successfully

success
boolean
Example:

true