GET
/
v1
/
contact_notes
/
{id}
Contact note details
curl --request GET \
  --url https://api.kajabi.com/v1/contact_notes/{id} \
  --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.

Path Parameters

id
string
required

Query Parameters

include
string

with ?include=contact the response will include the related contact resource

fields[contact_notes]
string

Sparse fields, use: body for example ?fields[contact_notes]=body

Response

Contact note retrieved successfully

data
object