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

{
  "status": "success"
}

Last updated