Contacts

Get contact

Retrieve a single contact by ID.

GET/v2026-04/contacts/{id}/

Usage

Start from this cURL example and add filters as needed.

cURL
curl -X GET https://core.appliedlabs.ai/v2026-04/contacts/11111111-1111-4111-8111-111111111111/ \
  -H "Authorization: Bearer <api-token>" \
  -H "X-Shop-Id: 66e4c4d2-34e8-4f85-8f51-84b6ed7b5f10"

Authorizations

Authorizationstringheaderrequired

Send your Applied API key as Authorization: Bearer AL.... Create the key in the Applied dashboard and keep it on your server.

Path parameters

idstring · uuidrequired

The ID of the contact you want to retrieve.

Header parameters

X-Shop-Idstring · uuidrequired

The shop whose data you want to read.

Response

The contact you asked for.

companystring
created_atstring · date-timerequired
display_namestring
emailstring | null
idstring · uuidrequired
is_archivedboolean
is_testboolean
last_activity_atstring · date-time | null
namestring
parent_contact_idstring · uuid | nullrequired
phonestring | null
remote_idstring | null
remote_platformstring | null
rolestring
updated_atstring · date-timerequired
{
  "company": "Barber Group",
  "created_at": "2026-04-07T14:30:00Z",
  "display_name": "Nancy Clarke",
  "email": "tonywalker@example.org",
  "id": "11111111-1111-4111-8111-111111111111",
  "is_archived": false,
  "is_test": false,
  "last_activity_at": "2026-04-07T15:05:00Z",
  "name": "Nancy Clarke",
  "parent_contact_id": "22222222-2222-4222-8222-222222222222",
  "phone": "+1-415-555-9664",
  "remote_id": "cust_ip66yv88",
  "remote_platform": "zendesk",
  "role": "Printmaker",
  "updated_at": "2026-04-07T15:12:00Z"
}