Sign in

Create contact note

documented

Create a new contact note for a contact.

POST /v1/contact_notesContact Notesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.kajabi.com/v1/contact_notes" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/vnd.api+json" \
  -H "Accept: application/vnd.api+json" \
  -d '{
    "data": {
      "type": "contact_notes",
      "attributes": {
        "body": "{{$body}}"
      },
      "relationships": {
        "contact": {
          "data": {
            "id": "{{$contact_id}}",
            "type": "contacts"
          }
        }
      }
    }
  }' 
Create contact note · kajabi · OpenIntegrations