Skip to main content

Getting a List of Unsubscribed Recipients

Last updated: 9 October 2025
tip

WhatsApp
To get a list of recipients who have unsubscribed from WhatsApp newsletters, use the api/channel-profile/subjects/unsubscribed-addresses method.

If you want to get a list of all unsubscribed recipients in all WhatsApp channels, send a GET request to the URL https://app.edna.io/api/channel-profile/subjects/unsubscribed-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": [
"35700000000",
"35710000000",
"35720000000",
"35730000000"
]
},
{
"subject": "example_wa2",
"addresses": [
"35700000000"
]
},
{
"subject": "example_wa3",
"addresses": [
"35730000000"
]
},
{
"subject": "example_wa4",
"addresses": [
"35720000000",
"35730000000"
]
}
]

The URL with the query parameter:

[
{
"subject": "example_wa",
"addresses": [
"35700000000",
"35710000000",
"35720000000",
"35730000000"
]
}
]
  • If a request was sent without a query parameter and there are no blocked recipients in WhatsApp channels, an empty array of [] is returned.

  • If a request was sent with a query parameter and there are no blocked recipients in a particular WhatsApp channel, a response is returned with the channel name and an empty array of addresses:

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

Response Parameters

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