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

πŸ“¦ Sample JSON Response