Campaigns
GET https://topperproof.com/api/campaigns/
curl --request GET \
--url 'https://topperproof.com/api/campaigns/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://topperproof.com/api/campaigns/' \
--header 'Authorization: Bearer {api_key}' \
Parameters | Details | Description |
---|---|---|
page | Optional Integer | The page number that you want results from. Defaults to 1 . |
results_per_page | Optional Integer | How many results you want per page. Allowed values are: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Defaults to 25 . |
{
"data": [
{
"id": 1,
"pixel_key": "1234567890abcdef",
"name": "Example",
"domain": "example.com",
"branding": {
"name": "",
"url": ""
},
"is_enabled": true,
"last_datetime": null,
"datetime": "2019-05-22 23:40:17"
}
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://topperproof.com/api/campaigns?&page=1",
"last": "https://topperproof.com/api/campaigns?&page=1",
"next": null,
"prev": null,
"self": "https://topperproof.com/api/campaigns?&page=1"
}
}
GET https://topperproof.com/api/campaigns/{campaign_id}
curl --request GET \
--url 'https://topperproof.com/api/campaigns/{campaign_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://topperproof.com/api/campaigns/{campaign_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"pixel_key": "1234567890abcdef",
"name": "Example",
"domain": "example.com",
"branding": {
"name": "",
"url": ""
},
"is_enabled": true,
"last_datetime": null,
"datetime": "2019-05-22 23:40:17"
}
}