Skip to main content
GET
/
orgs
/
{org_id}
/
contacts
/
{contact_id}
/
notes
List contact notes
curl --request GET \
  --url https://api.example.com/orgs/{org_id}/contacts/{contact_id}/notes
[
  {
    "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

Query Parameters

page
number

Page number

take
number

Number of items to take

next
string

Next page token (Only used on special endpoints)

Response

200 - application/json
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