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
๐น HTTP Request
DELETE API-URL/lists/LIST-UNIQUE-ID๐ธ URL Segments
Segment
Required
Description
๐ Authorization Header
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
Last updated