Get Single Contact
Retrieves detailed information for a specific contact by UUID.
Authorizations
Path parameters
idstring · uuidRequired
Responses
200
Contact details
application/json
404
Contact not found
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