Delete One Subscriber
Permanently delete a subscriber from a specific list. This operation is silent β no notification email will be sent.
ποΈ Delete One Subscriber
Remove a subscriber from a specific list using their unique subscriber and list identifiers.
πΉ HTTP Request
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
// 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>';