Delete a List
Permanently delete a specific subscriber list by its unique list UID. This action removes all associated list data and cannot be undone.
๐๏ธ Delete a List
Remove a subscriber list permanently using its unique list ID. This action cannot be undone.
๐น HTTP Request
DELETE API-URL/lists/LIST-UNIQUE-ID๐ธ URL Segments
Segment
Required
Description
LIST-UNIQUE-ID
Yes
Unique identifier of the list to delete.
๐ Authorization Header
Include your customer API key:
X-API-KEY: your-api-key-here๐ป PHP Example
// delete a list
$response = $endpoint->delete('LIST-UNIQUE-ID');
// DISPLAY RESPONSE
echo '<hr /><pre>';
print_r($response->body);
echo '</pre>';๐ฆ Sample JSON Response
Deleting a list is a permanent action. All associated data will be lost and cannot be recovered.