Skip to main content
POST
/
v1.0
/
subscribers
/
call-filter
/
allowed-numbers
/
add
json
{
  "SubscriberId": "TSUID-C7AB61E0-9AD9-4512-ACA8-EDA284131441",
  "CallFilterId": "CFID-8e966d20-08b8-42bf-a11f-2fdf72c663d6",
  "Numbers": ["+15555555555"]
}
{
  "FilterId": "CFID-8e966d20-08b8-42bf-a11f-2fdf72c663d6",
  "SubscriberId": "TSUID-C7AB61E0-9AD9-4512-ACA8-EDA284131441",
  "AllowedNumbers": [
    "+1111111111",
    "+15555555555"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.telegent.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
SubscriberId
string
required

Telegent Subscriber ID. Format: TSUID- followed by a UUID. Create one via POST /v1.0/subscribers/create or look up existing IDs with GET /v1.0/subscribers/get.

Example:

"TSUID-C7AB61E0-9AD9-4512-ACA8-EDA284131441"

CallFilterId
string
required

Call Filter ID. Format: CFID- followed by a UUID. Returned by POST /v1.0/subscribers/call-filter (Create) or GET /v1.0/subscribers/call-filter (List).

Example:

"CFID-8e966d20-08b8-42bf-a11f-2fdf72c663d6"

Numbers
string[]
required

One or more phone numbers (E.164 format) to add to the list. Each number must start with + and country code, e.g., +15555555555.

Example:
["+15555555555"]

Response

Allowed Numbers Added

The response is of type object.