Get Single Contact

Retrieves detailed information for a specific contact by UUID.

Get a contact

get
Authorizations
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-10-18",
  "email_consent": false,
  "sms_consent": false,
  "whatsapp_consent": false,
  "created_at": "2025-10-18T14:45:33.951Z",
  "updated_at": "2025-10-18T14:45:33.951Z"
}

Last updated