pasteCopy 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>';

πŸ“¦ Sample JSON Response

Last updated