Sign in

Create a contact

documented

Create a new contact.

POST /v1/contactsContactsno 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/contacts" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/vnd.api+json" \
  -d '{"data": {"type": "contacts", "attributes": {"name": "{{$name}}", "email": "{{$email}}", "phone_number": "{{$phone_number}}", "address_line_1": "{{$address_line_1}}", "address_line_2": "{{$address_line_2}}", "address_city": "{{$address_city}}", "address_state": "{{$address_state}}", "address_country": "{{$address_country}}", "address_zip": "{{$address_zip}}", "custom_1": "{{$custom_1}}", "custom_2": "{{$custom_2}}", "custom_3": "{{$custom_3}}"}, "relationships": {"site": {"data": {"type": "sites", "id": "{{$site_id}}"}}}}}'