Copy a Campaign
Duplicate an existing campaign using its unique campaign UID. This is useful when reusing previous campaign settings and templates.
๐ Copy a Campaign
Create a new campaign by copying the configuration and content of an existing one.
๐น HTTP Request
POST API-URL/campaigns/CAMPAIGN-UNIQUE-ID/copy๐ธ URL Segments
Segment
Required
Description
CAMPAIGN-UNIQUE-ID
Yes
Campaign unique ID to duplicate.
๐ Authorization Header
X-API-KEY: your-api-key-here๐ป PHP Example
// Copy CAMPAIGN
$response = $endpoint->copy('CAMPAIGN-UNIQUE-ID');
// DISPLAY RESPONSE
echo '<hr /><pre>';
print_r($response->body);
echo '</pre>';