GET
/
api
/
contacts
/
{contactId}
curl --request GET \
  --url https://api.atendai.com/api/contacts/{contactId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "number": "<string>",
  "email": "<string>",
  "profilePicUrl": "<string>",
  "isGroup": true,
  "isAdmin": true,
  "isOpen": true,
  "isBotEnabled": true,
  "utmCampaign": "<string>",
  "utmContent": "<string>",
  "utmMedium": "<string>",
  "utmSource": "<string>",
  "utmTerms": "<string>",
  "active": true,
  "channel": "<string>",
  "whatsappId": "<string>",
  "companyId": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

contactId
string
required

ID of the contact to retrieve

Response

200
application/json
Successful response

The response is of type object.