GET
/
campaigns
/
{campaignId}
/
contacts
/
{contactId}
curl --request GET \
  --url https://api.voxia.ai/campaigns/{campaignId}/contacts/{contactId} \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "phoneNumber": "<string>",
  "campaignId": "<string>",
  "status": "<string>",
  "attempts": 123,
  "failedReason": "<string>",
  "failedReasonDetails": "<string>",
  "createdAt": "<string>",
  "lastAttempt": "<string>"
}

Authorizations

Authorization
string
header
required

Headers

x-sub-organization-id
string

Optional sub organization ID. Must belong to your main organization API key.

Path Parameters

campaignId
string
required

Id of the campaign as a string ObjectId value.

contactId
string
required

Id of the contact as a string ObjectId value.

Response

default - application/json

The response is of type object.