Get One Campaign
Retrieve full details of a specific campaign using its unique campaign identifier.
π¨ Get One Campaign
Use this endpoint to fetch data of a single campaign by UID.
πΉ HTTP Request
GET API-URL/campaigns/CAMPAIGN-UNIQUE-IDπΈ URL Segments
Segment
Required
Description
CAMPAIGN-UNIQUE-ID
Yes
Campaign unique ID to retrieve.
π Authorization Header
X-API-KEY: your-api-key-hereπ» PHP Example
// GET ONE ITEM
$response = $endpoint->getCampaign('CAMPAIGN-UNIQUE-ID');
// DISPLAY RESPONSE
echo '<pre>';
print_r($response->body);
echo '</pre>';