Getting Contact

Fetch the details of a contact. You can send either a single object or an array of objects.
GET
/api/contacts
Body Parameters
id

String

Required

Id of contact to get

Request

                    "/api/contacts?id=123456789010"
                

Bulk Request

                    "/api/contacts?id=123456789010&id=234567890101"
                
Response:
status

String

Status of get

id

string

Id used to search contacts

data

object

Holds the content of the request contact

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

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

                    [
   {
      "status": "success",
      "id": "123456789010",
      "data": {
         "email": "doe.john@example.com",
         "phone": "",
         "company": "",
         "created_at": "2025-05-21T16:08:07.392703+00:00",
         "id": "123456789010",
         "user_id": "234567890101",
         "owner": "Jane",
         "last_activity": "2025-06-15T18:21:31.698+00:00",
         "last_name": "Doe",
         "job_title": "",
         "notes": null,
         "first_name": "John"
      }
   }
]