Delete a Campaign
Permanently delete a campaign using its unique campaign UID. This action is irreversible.
๐๏ธ Delete a Campaign
๐น HTTP Request
DELETE API-URL/campaigns/CAMPAIGN-UNIQUE-ID๐ธ URL Segments
Segment
Required
Description
๐ Authorization Header
X-API-KEY: your-api-key-here๐ป PHP Example
// Delete CAMPAIGN
$response = $endpoint->delete('CAMPAIGN-UNIQUE-ID');
// DISPLAY RESPONSE
echo '<hr /><pre>';
print_r($response->body);
echo '</pre>';๐ฆ Sample JSON Response
Last updated