Skip to main content

Getting List of Recipients Blocked due to Incoming Traffic

Last updated: 26 August 2025

To get a list of recipients blocked due to unwanted incoming traffic, 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
  • If you want to get a list of all blocked recipients in a specific WhatsApp channel, send a GET request to the URL https://app.edna.io/api/channel-profile/subjects/blocked-addresses?subject=example_wa by specifying the subject (the signature name) in the query parameter. To find out the name of the signature, use the API method to get a list of channels (the subject field). File IconReceiving List of Channels

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.