Kampagnen
GET https://enotify.cl/api/campaigns/
curl --request GET \
--url 'https://enotify.cl/api/campaigns/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://enotify.cl/api/campaigns/' \
--header 'Authorization: Bearer {api_key}' \
Parameter | Details | Beschreibung |
---|---|---|
page | Optional Ganze Zahl | Die Seitenzahl, von der aus Sie Ergebnisse erhalten möchten. Standardmäßig auf 1 festgelegt. |
results_per_page | Optional Ganze Zahl | Wie viele Ergebnisse möchten Sie pro Seite sehen. Erlaubte Werte sind: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Standardmäßig auf 25 gesetzt. |
{
"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://enotify.cl/api/campaigns?&page=1",
"last": "https://enotify.cl/api/campaigns?&page=1",
"next": null,
"prev": null,
"self": "https://enotify.cl/api/campaigns?&page=1"
}
}
GET https://enotify.cl/api/campaigns/{campaign_id}
curl --request GET \
--url 'https://enotify.cl/api/campaigns/{campaign_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://enotify.cl/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"
}
}