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