List this tenant's DNC registry subscriptions (SANs)
GET
/v1/dnc-subscriptions
const url = 'https://api.vocapable.com/v1/dnc-subscriptions';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.vocapable.com/v1/dnc-subscriptions \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Response List Dnc Subscriptions V1 Dnc Subscriptions Get
Array<object>
DncSubscriptionSummaryA 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
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" }]