Moshe Bareket
Articles
-
Manage Supply Capping
PATCH /api/player//cappings Attribute Name Possible Values cappingType Impressions = 1 paceOption ASAP = 1 cappingValue Sample Request ...
-
Update List
PATCH /api/lists/ Sample Request curl -X PATCH https://api.cedato.com/api/lists/> -H 'accept: application/json' -H 'api-version: 1' -H 'authorization: Bearer ' name=myL...
-
File formar for JSON
{"status":"OK", "headers":[ "report header 1", "report header 2", ... "report header X" ], "data":[ [ "value 1", "value 2", … "value x" ], ...
-
Response Structure
All reports are returned in the following structure: { "status": "OK", "data": { "objects": [], "navigation": [ "next": "link if exists", "prev": "link if exists ] } } N...
-
Unassign Demand and Supply
PATCH /api/demand//supplies//detach Unassign supply 456 to demand 123 Sample Request curl -X PATCH https://api.cedato.com/api/demand/123/supplies/456/detach -H 'accept: application/...
-
Examples
1. Selected dimensions: supply, demand, day: {"dimensions":["supply","demand","day"]} because of API requirements for this query will be set: date range: last 48 hours output format: JSON 2...
-
Create List
POST /api/lists/ Sample Request curl -X POST https://api.cedato.com/api/lists/ -H 'accept: application/json' -H 'api-version: 1' -H 'authorization: Bearer ' name=myList&lis...
-
Assign multiple Supply items to Demand
PATCH /api/demand//supplies/multi/attach Assigning supplies 456 and 789 to demand 123 Sample Request curl -X PATCH https://api.cedato.com/api/demand/123/supplies/multi/attach -H 'ac...
-
Range
Parameters: Name Type Required Description start Unix timestamp no Default: 7 days agoThe first day to include in the report end Unix timestamp no Def...
-
Rate Limit
Your API account has a predefined minute, hourly and daily request limits. If you reach the limit, the request returns error code 429 indicating that there were too many requests. We recommend you ...