Search by Email in All Lists
Search for a subscriber by email across all lists associated with the authenticated account. This is helpful when you don’t know which list a subscriber belongs to.
🌐 Search by Email in All Lists
Locate a subscriber across all your lists using their email address.
🔹 HTTP Request
GET API-URL/lists/subscribers/search-by-email-in-all-lists🔎 Query Parameters
Parameter
Required
Description
email
Yes
Email address of the subscriber.
🔐 Authorization Header
X-API-KEY: your-api-key-here💻 PHP Example
// SEARCH BY EMAIL IN ALL LISTS
$response = $endpoint->emailSearchAllLists('[email protected]');
// DISPLAY RESPONSE
echo '<hr /><pre>';
print_r($response->body);
echo '</pre>';