Skip to main content
GET
/
api
/
contacts
/
{contactId}
Get a contact
curl --request GET \
  --url https://core-api.getaptly.com/api/contacts/{contactId} \
  --header 'x-token: <api-key>'
{
  "data": [
    {
      "_id": "<string>",
      "uuid": "<string>",
      "firstname": "<string>",
      "lastname": "<string>",
      "fullName": "<string>",
      "duogram": "<string>",
      "photoId": "<string>",
      "imageUrl": "<string>",
      "email": "<string>",
      "phone": "<string>",
      "typeId": "<string>",
      "companyId": "<string>",
      "address": {},
      "title": "<string>",
      "alerts": [
        {}
      ],
      "company": "<string>",
      "isCompany": true
    }
  ],
  "count": 123,
  "page": 123,
  "pageSize": 123
}

Authorizations

x-token
string
header
required

Path Parameters

contactId
string
required

The contact's _id.

Response

Contact record.

data
object[]
count
integer
page
integer
pageSize
integer