Skip to main content
POST
https://api.example.com
/
v1
/
dnc
/
add
curl -X POST https://api.example.com/v1/dnc/add \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"phone_number": "+15551234567", "organization_id": "{org_id}"}'
{
  "success": true,
  "message": "Phone number added to DNC list",
  "powered_by": "Teli"
}

Authorizations

X-API-Key
string
required
Authentication header

Body

phone_number
string
required
Phone in E.164 format
organization_id
string
required
Organization unique_id
curl -X POST https://api.example.com/v1/dnc/add \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"phone_number": "+15551234567", "organization_id": "{org_id}"}'
{
  "success": true,
  "message": "Phone number added to DNC list",
  "powered_by": "Teli"
}