Creating Contact

Creates a new contact and stores it in the CRM system. You can send either a single object or an array of objects.
POST
/api/contacts
Body Parameters
first_name

String

Required

First name of contact

email

String

Required

Email of contact

last_name

String

The last name of the contact

phone

Integer

The phone number of the contact

company

String

The company that contact works at

created_at

String

A timestamp of when the contact was originally created

user_id

String

User id of the owner of the contact

owner

String

Owner of the contacts display name

last_activity

String

Timestamp of the last email activity that occured with contact

job_title

String

The job title of the contact

notes

String

Any notes attached to the contact

Request

                    [
   {
      "first_name": "John",
      "last_name": "Doe",
      "email": "johndoe@example.com",
      "phone": "+1234567890",
      "company": "Example Inc.",
      "job_title": "Sales Manager",
      "notes": "Interested in product demo"
   }
]
                

Bulk Request

                    [
   {
      "first_name": "John",
      "last_name": "Doe",
      "email": "johndoe@example.com",
      "notes": "Interested in product demo"
   },
   {
      "first_name": "Jane",
      "last_name": "Doe",
      "email": "jane.doe@example.com",
      "company": "Example inc"
   }
]
                
Response:
email

String

The email of the contact

phone

Integer

The phone number of the contact

company

String

The company that contact works at

created_at

String

A timestamp of when the contact was originally created

id

string

Id of to contact

user_id

String

User id of the owner of the contact

owner

String

Owner of the contacts display name

last_activity

String

Timestamp of the last email activity that occured with contact

last_name

String

The last name of the contact

job_title

String

The job title of the contact

notes

String

Any notes attached to the contact

first_name

String

The first name of the contact

Response

                    [
   {
      "email": "doe.john@example.com",
      "phone": "",
      "company": "Example inc",
      "created_at": "2025-06-15T21:08:05.83692+00:00",
      "id": "12415566516126",
      "user_id": "41556651612611",
      "owner": "Jane",
      "last_activity": null,
      "last_name": "doe",
      "job_title": "",
      "notes": null,
      "first_name": "John"
   }
]