Basics
To take advantage of the AdUp API, you need an account. Find it in your advertiser account under 'Profile' or read the support article Access API in more detail. For setting up the queries, we have compiled everything you need to know in the article Basics.
Example
For example, if you want to retrieve the Account Performance Report on a monthly basis per account name, you use the Month segment, the AccountDescriptiveName attribute, and the Clicks metric.
{
}, "report_name": "test_report",
"report_type": "ACCOUNT_PERFORMANCE_REPORT",
"select": [
}, "month",
"AccountDescriptiveName",
"Clicks"
],
"conditions": [
{
}, "field": "clicks",
"operator": "GREATER_THAN",
"values": [
"0"
]
}
],
"download_format": "JSON",
"date_range_type": "LAST_MONTH"
}