I am trying to migrate a script from adwords to ads and the following field is not listed anywhere into the official mapping pages:
Report query in adwords:
report = {
'reportName': 'CAMPAIGN_PERFORMANCE_REPORT',
'dateRangeType': 'LAST_30_DAYS',
'reportType': 'CAMPAIGN_PERFORMANCE_REPORT',
'downloadFormat': 'XML',
'selector': {
'fields': ['Date', 'Device', 'AccountDescriptiveName', 'CampaignName', 'CampaignId',
'CampaignStatus', 'Labels', 'Amount', 'AveragePosition',
'SearchImpressionShare', 'Impressions', 'Clicks', 'Cost'],
'predicates': {
'field': 'CampaignStatus',
'operator': 'IN',
'values': ['ENABLED', 'PAUSED']}}}
And after that I am parsing the xml and I use the 'budget' key that in ads is not to be found:
elem.get('budget')
ls -la
Can you direct me to the exact match from googleads?