Delete a Campaign

Permanently delete a campaign using its unique campaign UID. This action is irreversible.

๐Ÿ—‘๏ธ Delete a Campaign

Remove a campaign from your account by referencing its unique ID.


๐Ÿ”น HTTP Request

DELETE API-URL/campaigns/CAMPAIGN-UNIQUE-ID

๐Ÿ”ธ URL Segments

Segment
Required
Description

CAMPAIGN-UNIQUE-ID

Yes

Campaign unique ID to delete.


๐Ÿ” 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