Skip to main content
PATCH
/
orgs
/
{org_id}
/
contacts
/
{contact_id}
/
notes
/
{note_id}
Update a contact note
curl --request PATCH \
  --url https://api.example.com/orgs/{org_id}/contacts/{contact_id}/notes/{note_id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "content": "<string>"
}
'
{
  "id": "<string>",
  "user": {
    "id": "<string>",
    "name": "<string>",
    "avatar": "<string>"
  },
  "contact_id": "<string>",
  "content": "<string>",
  "created_at": "2023-12-25",
  "updated_at": "2023-12-25"
}

Path Parameters

org_id
string
required
contact_id
string
required
note_id
string
required

Body

Schema for updating a contact note

content
string

The content of the note (max 1000 characters)

Required string length: 1 - 1000

Response

200 - application/json

Schema for a contact note

id
string
required
user
object
required

User who created the note

contact_id
string
required
content
string
required
created_at
string<date> | null
required
updated_at
string<date> | null
required