PATCH
/
v1
/
contact_notes
/
{id}
Update contact note
curl --request PATCH \
  --url https://api.kajabi.com/v1/contact_notes/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "id": "<string>",
    "type": "contact_notes",
    "attributes": {
      "body": "<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>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/vnd.api+json
data
object
required

Response

Contact note updated successfully

data
object