> For the complete documentation index, see [llms.txt](https://api.senderwiz.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api.senderwiz.com/customer/subscribers/unsubscribe-subscriber-from-all-lists.md).

# Unsubscribe Subscriber from All Lists

### 🚫 Unsubscribe Subscriber from All Lists

Automatically remove a subscriber from every list they are part of, identified via email address.

***

#### 🔹 HTTP Request

```http
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

```php
// UNSUBSCRIBE existing subscriber from all lists, no email is sent, unsubscribe is silent
$response = $endpoint->unsubscribeByEmailFromAllLists('olivia.king@demo.io');

// DISPLAY RESPONSE
echo '<hr /><pre>';
print_r($response->body);
echo '</pre>';
```

***

#### 📦 Sample JSON Response

```json
{
  "status": "success"
}
```
