Skip to main content
GET
/
api
/
contact-notes
Get all notes for a contact with pagination
curl --request GET \
  --url https://your-instance.example.com/api/contact-notes \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "_id": "67f0a0b0c0d0e0f0a0b0c0d0",
      "userId": {
        "_id": "65b1f0a2c3d4e5f6a7b8c9d3",
        "fullName": "Cory Tan",
        "email": "cory@example.com"
      },
      "note": "Spoke briefly; will follow up tomorrow.",
      "attachments": [],
      "reactions": [],
      "isEdited": false,
      "createdAt": "2026-05-18T14:00:00.000Z"
    }
  ],
  "pagination": {
    "total": 1,
    "limit": 25,
    "offset": 0,
    "hasMore": false
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

contactId
string
required
limit
string
offset
string

Response

Contact notes returned

success
enum<boolean>
required
Available options:
true
data
object[]
required
pagination
object
required