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>';

πŸ“¦ Sample JSON Response