Moshe Bareket

  • Total activity 362
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 0
  • Subscriptions 276

Articles

Recent activity by Moshe Bareket
Sort by recent activity Recent activity Votes
  • Manage Supply Capping

    PATCH /api/player//cappings   Attribute Name Possible Values     cappingType Impressions = 1 paceOption ASAP = 1   cappingValue       Sample Request ...

    • Created
    • 1 follower
    • 0 comments
    • 0 votes
  • 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...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • File formar for JSON

    {"status":"OK",    "headers":[       "report header 1",       "report header 2",       ...        "report header X"    ],    "data":[       [          "value 1", "value 2", … "value x"       ],  ...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • Response Structure

    All reports are returned in the following structure: {  "status": "OK",  "data": {    "objects": [],    "navigation": [        "next": "link if exists",        "prev": "link if exists    ]  } }   N...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • 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/...

    • Created
    • 1 follower
    • 0 comments
    • 0 votes
  • 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...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • 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...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • 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...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • 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...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • 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 ...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes