Get Single Contact

Retrieves detailed information for a specific contact by UUID.

Get a contact

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstring · uuidRequired
Responses
200

Contact details

application/json
get
/contacts/{id}
GET /api/v1/contacts/{id} HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "first_name": "text",
  "last_name": "text",
  "email": "name@gmail.com",
  "phone_number": "text",
  "date_of_birth": "2025-12-05",
  "email_consent": false,
  "sms_consent": false,
  "whatsapp_consent": false,
  "created_at": "2025-12-05T22:41:52.157Z",
  "updated_at": "2025-12-05T22:41:52.157Z"
}

Last updated