Skip to main content
POST
Create a CRM person
Creates a new CRM person record.

Name requirement

At least one of firstName or lastName must be provided.

Associating with a company

Pass companyId with the UUID of an existing CRM company to link the person to that company. Pass social profile URLs as a nested socials object:

Authorizations

Authorization
string
header
required

Body

application/json
firstName
string | null

First name. Required if lastName is not provided.

Example:

"Jane"

lastName
string | null

Last name. Required if firstName is not provided.

Example:

"Doe"

salutation
string | null

Salutation or title.

Example:

"Ms"

emails
string<email>[] | null

List of email addresses. The first entry becomes the primary email.

Example:
jobTitle
string | null

Job title or role.

Example:

"Head of Product"

description
string | null

Free-text description or notes.

phoneNumber
string | null

Primary phone number.

Example:

"+4930123456789"

primaryLocation
string | null

Primary location or city.

Example:

"Berlin, Germany"

avatarUrl
string | null

URL of the person's avatar image.

companyId
string | null

UUID of the CRM company to associate this person with.

socials
object

Social profile links.

Response

Created

success
boolean
Example:

true

status
integer
Example:

201

person
object

A CRM person record.

Last modified on June 11, 2026