v2

latestOpenAPI 3.1.02026-08-07750280.6 KB
Contacts

Create contact

Create a new contact in your organization.

post/contacts

Request body

first_namestring required

Contact's first name

last_namestring

Contact's last name (optional)

emailstring email

Contact's email address (optional)

phone_numberstring required

Contact's phone number in E.164 format

addressstring

Contact's address (optional)

custom_fieldsobject

Custom fields as key-value pairs. Unknown fields are auto-created with type inferred from the value. Supported value types: string, number, boolean.

Example request

{
  "address": "123 Main St, City, State",
  "custom_fields": {
    "department": "Engineering",
    "hair_color": "brown"
  },
  "email": "john.doe@example.com",
  "first_name": "John",
  "last_name": "Doe",
  "phone_number": "+1234567890"
}

Response

Contact created successfully

okboolean