Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Date Ranges: All Date Ranges available to existing Supply, Demand, Pod and Advertiser Domain Reports are available for this report.

    • The one difference is that if users select a custom time period, the max look back available to be selected is 365 days. Any time period beyond 365 days is ineligible for selection.

    • If users try to re-run a saved report for a time period that might exceed 365 days as of the time of running this report, then a message like the one shown in the screenshot below will be displayed

    • Image RemovedImage Added
  • Intervals: All Intervals available to existing Supply, Demand, Pod and Advertiser Domain Reports are available for this report with the exception of hour.

  • Time Zone: This report can only be run in UTC.

...

Here’s an example API Call in our test environment with the Auth token hidden for running these reports after users have received a valid Authorization token.

Code Block
curl --location --request POST 'https://staging-admin-console.springserve.com/api/v0/report' \
--header 'Content-Type: application/json' \
--header 'Authorization: 439f3feb76ed42f4cb9d0987bd64a7d3________________' \
--data-raw '{
    "interval":"day",
    "timezone":"UTC",
    "start_date":"2021-08-26",
    "end_date": "2022-01-01",
    "demand_tag_ids":[24275],
    "async":true
}'

...