Contacts

Get a contact

Returns a single contact by ID.

get/contacts/{id}

Path parameters

idinteger required

Contact ID

Example:1

Contact ID

Response

Contact details

idnumber required

Contact ID

namestring nullable required

Contact name

emailstring email nullable required

Contact email address

phoneNumberstring nullable required

Contact phone number

jobTitlestring nullable required

Job title

crmPersonIdstring nullable required

External CRM person identifier

crmIdentifierstring nullable required

External CRM identifier (unified field)

crmLinkstring nullable required

URL to contact in external CRM

crm'microsoft_dynamics' | 'hubspot' | 'pipedrive' | 'salesforce' | 'sellsy' | 'zoho' | 'null' nullable required

CRM provider

accountIdnumber nullable required

Associated account ID

createdOnstring nullable required

Creation timestamp

modifiedOnstring nullable required

Last modification timestamp

Example response

{
  "id": 1,
  "name": "John Doe",
  "email": "john.doe@example.com",
  "phoneNumber": "+1234567890",
  "jobTitle": "Sales Manager",
  "crmPersonId": "003ABC123",
  "crmIdentifier": "003ABC123",
  "crmLink": "https://example.my.salesforce.com/003ABC123",
  "crm": "salesforce",
  "accountId": 42
}

Changes