Skip to main content
POST
/
v1.0
/
subscribers
/
message-filter
/
blocked-contacts
/
add
json
{
  "SubscriberId": "SID-C7AB61E0-9AD9-4512-ACA8-EDA284131441",
  "MessageFilterId": "MFID-7435d672-a2d0-451e-ab62-45499f5bc7a1",
  "Contacts": ["+14444444444"]
}
{
  "FilterId": "MFID-7435d672-a2d0-451e-ab62-45499f5bc7a1",
  "SubscriberId": "SID-C7AB61E0-9AD9-4512-ACA8-EDA284131441",
  "BlockedContacts": [
    "+3333333333",
    "+14444444444"
  ]
}

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.

Authorizations

Authorization
string
header
required

Enter the token obtained from the Authentication endpoint

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:

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

MessageFilterId
string
required

Message Filter ID. Format: MFID- followed by a UUID. Returned by POST /v1.0/subscribers/message-filter (Create) or GET /v1.0/subscribers/message-filter (List).

Example:

"MFID-7435d672-a2d0-451e-ab62-45499f5bc7a1"

Contacts
string[]
required

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

Example:
["+14444444444"]

Response

200 - application/json

Blocked Contacts Added

The response is of type object.