GET
/
v1
/
contact_notes
List contact notes
curl --request GET \
  --url https://api.kajabi.com/v1/contact_notes \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "contact_notes",
      "attributes": {
        "body": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z"
      },
      "relationships": {
        "contact": {
          "data": {
            "id": "<string>",
            "type": "<string>"
          }
        }
      }
    }
  ],
  "links": {
    "self": "<string>",
    "current": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

filter[contact_id]
string

Filter contact notes for a specific contact by ID

filter[site_id]
string

Filter contact notes for a specific site by ID

sort
string

Sort field. Prefix with '-' for descending order. Available: created_at, updated_at

page[number]
integer

Page number for pagination

page[size]
integer

Number of items per page (max 100)

Response

Contact notes filtered by contact_id

data
object[]