Get All Campaigns
Retrieve a paginated list of all campaigns associated with your SenderWiz account. You can optionally filter campaigns by a specific list UID.
π Get All Campaigns
πΉ HTTP Request
GET API-URL/campaignsπ Query Parameters
Parameter
Default
Description
π Authorization Header
X-API-KEY: your-api-key-hereπ» PHP Example
// GET ALL ITEMS
$response = $endpoint->getCampaigns($pageNumber = 1, $perPage = 10);
// DISPLAY RESPONSE
echo "<pre>";
print_r($response->body);
echo "</pre>";π¦ Sample JSON Response
Last updated