PUTa note

PUT /user-api/v1/notes/:id

Headers

HeaderValue
Content-Typeapplication/json
x-rolodex-api-keyf1e2d3c4b5a697...

Path Parameters

id
string

Note ID

Query Parameters

include
string

Related data to include: contacts

Endpoint Example

PUT /user-api/v1/notes/note_99999?include=contacts

Relationship fields (contacts) are replaced entirely with the provided values. To add to existing relationships, include all current values plus new ones.

Request

{
  "body": "Updated: Discussed product roadmap and confirmed partnership meeting",
  "contacts": ["contact_123"]
}

Response

{
  "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"
  }
}