v2

latestOpenAPI 3.0.02026-07-26365590.3 KB
Contacts

Get a contact

Returns a single contact by ID. Returns 404 if the contact is in a workspace outside the API key scope.

get/v1/contacts/{id}

Path parameters

idstring required

Response

The contact

idstring required
firstNamestring required
lastNamestring required
emailobject nullable
companyobject nullable
cityobject nullable
countryobject nullable
urlobject nullable
linkedinUrlobject nullable
linkedinSalesUrlobject nullable
roleobject nullable
allowPhoneCallsboolean required
callCountnumber required
lastCallAtstring date-time nullable
teamIdstring required
phoneNumbersstring[] required
customFieldsobject required
createdAtstring date-time required
updatedAtstring date-time required
lastModificationSource'SKIPCALL' | 'API' required

Example response

{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "firstName": "John",
  "lastName": "Doe",
  "allowPhoneCalls": true,
  "callCount": 5,
  "teamId": "550e8400-e29b-41d4-a716-446655440000",
  "phoneNumbers": [
    "+33612345678"
  ],
  "customFields": {
    "Industry": "Technology",
    "Size": "50-100"
  }
}