Unsubscribe Subscriber from All Lists
Unsubscribe a subscriber from all lists using their email address. This is a silent operation — no confirmation email is sent.
🚫 Unsubscribe Subscriber from All Lists
Automatically remove a subscriber from every list they are part of, identified via email address.
🔹 HTTP Request
PUT API-URL/lists/subscribers/unsubscribe-by-email-from-all-lists
🔎 PUT Parameters
Parameter
Required
Description
EMAIL
Yes
Email address of the subscriber.
🔐 Authorization Header
X-API-KEY: your-api-key-here
💻 PHP Example
// UNSUBSCRIBE existing subscriber from all lists, no email is sent, unsubscribe is silent
$response = $endpoint->unsubscribeByEmailFromAllLists('[email protected]');
// DISPLAY RESPONSE
echo '<hr /><pre>';
print_r($response->body);
echo '</pre>';
📦 Sample JSON Response
{
"status": "success"
}
Last updated