Delete One Subscriber
Permanently delete a subscriber from a specific list. This operation is silent — no notification email will be sent.
🗑️ Delete One Subscriber
🔹 HTTP Request
DELETE API-URL/lists/LIST-UNIQUE-ID/subscribers/SUBSCRIBER-UNIQUE-ID🔸 URL Segments
Segment
Required
Description
🔐 Authorization Header
X-API-KEY: your-api-key-here💻 PHP Example
// 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
Last updated