Skip to content

List this tenant's DNC registry subscriptions (SANs)

GET
/v1/dnc-subscriptions
curl --request GET \
--url https://api.vocapable.com/v1/dnc-subscriptions \
--header 'Authorization: Bearer <token>'

Successful Response

Media typeapplication/json
Response List Dnc Subscriptions V1 Dnc Subscriptions Get
Array<object>
DncSubscriptionSummary

A tenant’s registered DNC registry subscription - its SAN and the NPAs it covers.

The credential behind the SAN is held in the platform vault and is never returned; only the account reference and the coverage are.

object
id
required
Id
string
kind
required
Kind
string
account_ref
required
Account Ref
string
area_codes
required
Area Codes
Array<string>
status
required
Status
string
effective_at
required
Effective At
string format: date-time
expires_at
Any of:
string format: date-time
Examplegenerated
[
{
"id": "example",
"kind": "example",
"account_ref": "example",
"area_codes": [
"example"
],
"status": "example",
"effective_at": "2026-04-15T12:00:00Z",
"expires_at": "2026-04-15T12:00:00Z"
}
]