python - how to generate the report query without using the dimesion attribute for google DFP ad exchange API -


i trying generate report using dimension , columns (excluding dimension attribute ) dfp_api ad_exchange there no dimension attribute requirement . please me out in generating report .please find below report query

report_job = {       'report_query': {           'dimensions': ['ad_exchange_agency'],            'statement': filter_statement,           'columns': ['ad_exchange_inventory_size', 'ad_exchange_url_id'],           'daterangetype': 'custom_date',           'startdate': start_date,           'enddate': end_date       }   } 


Comments

Popular posts from this blog

python - Best design pattern for collection of objects -

go - serving up pdfs using golang -

python - django admin: changing the way a field (w/ relationship to another model) is submitted on a form so that it can be submitted multiple times -