Skip to main content
POST

Create Contact

Creates a new contact in your organization. At least one of email or phone_number is required. If a contact with the same email already exists, the endpoint returns 409 Conflict with the existing contact data.

Request Body

string
Email address. Will be normalized to lowercase. Must be a valid email format.At least one of email or phone_number is required.
string
Phone number in international format (e.g., +1234567890).At least one of email or phone_number is required.
string
First name.
string
Last name.
string
Job title.
string
Company name.
string
University name.
string
Gender.
string
Birthday (any string format, e.g., 1990-01-15).
string
Location (e.g., New York, NY).
string
LinkedIn URL.
string
Instagram handle or URL.
string
Twitter handle or URL.
string
GitHub handle or URL.
string
Website URL.
string[]
Array of tags to assign to the contact.

Response

Returns the created contact object with a 201 Created status.
object
The created contact object (same schema as Get Contact).