> 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/delete-one-subscriber.md).

# Delete One Subscriber

### 🗑️ Delete One Subscriber

Remove a subscriber from a specific list using their unique subscriber and list identifiers.

***

#### 🔹 HTTP Request

```http
DELETE API-URL/lists/LIST-UNIQUE-ID/subscribers/SUBSCRIBER-UNIQUE-ID
```

***

#### 🔸 URL Segments

| Segment                | Required | Description                                     |
| ---------------------- | -------- | ----------------------------------------------- |
| `LIST-UNIQUE-ID`       | Yes      | List unique ID to which the subscriber belongs. |
| `SUBSCRIBER-UNIQUE-ID` | Yes      | Subscriber unique ID to delete.                 |

***

#### 🔐 Authorization Header

```
X-API-KEY: your-api-key-here
```

***

#### 💻 PHP Example

```php
// DELETE SUBSCRIBER, no email is sent, delete is silent
$response = $endpoint->delete('LIST-UNIQUE-ID', 'SUBSCRIBER-UNIQUE-ID');

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

***

#### 📦 Sample JSON Response

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