Sent LogoSent API Docs

Get contact by ID for authenticated customer

Retrieves a specific contact by their unique identifier for the authenticated customer. The customer ID is extracted from the authentication token. Returns detailed contact information including phone number and creation timestamp.

GET
/v1/contacts/id
x-sender-id<token>

In: header

Query Parameters

idstring
Formatguid

Header Parameters

x-sender-idstring
Formatguid
x-api-keystring

Response Body

curl -X GET "https://api.sent.dm/v1/contacts/id?id=string" \  -H "x-sender-id: string" \  -H "x-api-key: string"

{
  "id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
  "phoneNumber": "+1234567890",
  "formatE164": "+1234567890",
  "formatInternational": "+1 234-567-890",
  "formatNational": "(234) 567-890",
  "formatRfc": "tel:+1-234-567-890",
  "countryCode": "1",
  "regionCode": "US",
  "availableChannels": "sms,whatsapp",
  "defaultChannel": "sms"
}
Empty
Empty