DELETE a note
DELETE /user-api/v1/notes/:id
Path Parameters
string
Note ID
Query Parameters
string
Related data to include:
contactsEndpoint Example
Delete /user-api/v1/notes/note_99999?include=contacts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Permanently delete a note from your Rolodex workspace.
DELETE a noteDELETE /user-api/v1/notes/:id
contactsDelete /user-api/v1/notes/note_99999?include=contacts
{
"data": {
"id": "note_99999",
"body": "Updated: Discussed product roadmap and confirmed partnership meeting",
"created_at": "2025-01-15T10:30:00Z",
"updated_at": "2025-01-15T12:45:00Z",
"contacts": [
{
"id": "contact_123",
"full_name": "John Doe",
"image_url": "https://example.com/avatar.jpg"
}
]
}
}