Skip to main content

Getting a List of Recipients Blocked due to Incoming Traffic

Last updated: 26 August 2025
tip

WhatsApp
To get a list of recipients blocked due to unwanted incoming traffic in the WhatsApp channel, use the api/channel-profile/subjects/blocked-addresses method.

If you want to get a list of all blocked recipients in all WhatsApp channels, send a GET request to the URL https://app.edna.io/api/channel-profile/subjects/blocked-addresses

Request Format

An empty JSON is passed in the request body.

Response Format

[
{
"subject": "string",
"addresses": [
"string",
"string"
]
}
]

Response Example

The URL without the query parameter:

[
{
"subject": "example_wa1",
"addresses": [
"35701000000",
"35702000000",
"35703000000",
"35704000000"
]
},
{
"subject": "example_wa2",
"addresses": [
"35700000000"
]
},
{
"subject": "example_wa3",
"addresses": [
"35703000000"
]
},
{
"subject": "example_wa4",
"addresses": [
"35702000000",
"35703000000"
]
}
]

The URL with the query parameter:

[
{
"subject": "example_wa",
"addresses": [
"35700000000",
"35701000000",
"35702000000",
"35703000000"
]
}
]
info

If there are no blocked recipients in WhatsApp channels, an empty array of [] is returned.

Response Parameters

ParameterData typeDescription
subjectstringThe name of the signature.
addressesarray of stringsAn array of recipient addresses — phone numbers or other unique identifiers.