Skip to main content
GET
/
v1
/
10dlc
/
campaigns
/
{campaignId}
/
phone-numbers
List campaign phone number assignments
curl --request GET \
  --url https://api.zavu.dev/v1/10dlc/campaigns/{campaignId}/phone-numbers \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "campaignId": "<string>",
      "phoneNumberId": "<string>",
      "status": "pending",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "failureReason": "<string>",
      "assignedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

campaignId
string
required

10DLC campaign ID.

Response

List of phone number assignments.

items
object[]
required
nextCursor
string | null