Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added dynamic date range information

This entry provides detailed information on the Data Export processes of the DMP.

...

KeyExplanation
dimensions

See the list of available identifiers.

measures

See the list of available identifiers.

filters

Filter on date dimension is required. It looks like this:

Code Block
[{
        "dimension": "date",
        "date_start": "2014-03-20",
        "date_end": "2014-03-27",
        "date_dynamic": null
}]

To use a dynamic date the JSON would look like this:

Code Block
[{
        "dimension": "date",
        "date_dynamic": "yesterday"
   }]

The available options are:

  • today
  • yesterday
  • last_7_days
  • last_30_days

You can also add additional filters, such as an advertiser filter:
Code Block
{
        "dimension": "advertiser_id",
        "include": ["7971"]
 }
limitHow many items to return. 5000 is the max.
orderOn which measure(s) should the data be sorted.
batch_export

false or true (default = false) Allows to export large volumes of data through the API in a tab separated format.

callback_idThis can be anything and it will be returned as is. It is used to keep track of queries when sending requests in parallel.

Example

Below a configuration example of a JSON query object array for the "x" parameter.

...