Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/vnd.api+json
curl --request POST \
--url https://api.kajabi.com/v1/contact_notes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "contact_notes",
"attributes": {
"body": "<string>"
},
"relationships": {
"contact": {
"data": {
"id": "<string>",
"type": "<string>"
}
}
}
}
}'
{
"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>"
}
}
Creates a new contact note.
Required Attributes:
body
(string) - The note contentRequired Relationships:
contact
- The contact this note belongs to (resource identifier)curl --request POST \
--url https://api.kajabi.com/v1/contact_notes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "contact_notes",
"attributes": {
"body": "<string>"
},
"relationships": {
"contact": {
"data": {
"id": "<string>",
"type": "<string>"
}
}
}
}
}'
{
"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>"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Show child attributes