Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.tagdeliver.com/v1/report/campaign \
--header 'Authorization: Bearer <token>'{
"results": [
{
"campaign_id": 32729473,
"campaign_name": "example.com campaign",
"start_date": "2024-07-31",
"end_date": "2025-11-23",
"publisher": "example.com",
"status": "live"
}
],
"success": true
}Fetches a list of campaign reports, including details such as campaign ID, campaign name, start and end dates, publisher, and status. Use this endpoint to obtain an overview of all campaigns and their current states.
curl --request GET \
--url https://api.tagdeliver.com/v1/report/campaign \
--header 'Authorization: Bearer <token>'{
"results": [
{
"campaign_id": 32729473,
"campaign_name": "example.com campaign",
"start_date": "2024-07-31",
"end_date": "2025-11-23",
"publisher": "example.com",
"status": "live"
}
],
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?