Pause/Unpause a Campaig
Toggle the status of a campaign between "paused" and "sending" using its unique campaign UID.
⏸️ Pause/Unpause a Campaign
🔹 HTTP Request
PUT API-URL/campaigns/CAMPAIGN-UNIQUE-ID/pause-unpause🔸 URL Segments
Segment
Required
Description
🔐 Authorization Header
X-API-KEY: your-api-key-here💻 PHP Example
// Pause/Unpause CAMPAIGN
$response = $endpoint->pauseUnpause('CAMPAIGN-UNIQUE-ID');
// DISPLAY RESPONSE
echo '<hr /><pre>';
print_r($response->body);
echo '</pre>';📦 Sample JSON Response
Last updated