Hi,
I have two reports in the UI. Following are the fields of the reports:
Campaign
Ad group
Country/Territory (User location)
City (User location)
Day
Currency code
Impr.
Clicks
Conversions
Cost
Campaign
Ad group
Country/Territory (Matched)
City (Matched)
Day
Currency code
Impr.
Clicks
Conversions
Cost
I am trying to produce these reports using the geographic_view report (Google Ads API), however, the results (for the impressions, clicks, etc..) differ from the results in the UI reports.
Following is the query I am using:
SELECT
geographic_view.location_type,
geographic_view.resource_name,
metrics.impressions,
metrics.clicks,
metrics.conversions,
metrics.cost_micros,
segments.geo_target_county,
segments.geo_target_city,
segments.date
FROM
geographic_view
WHERE
segments.date BETWEEN XX AND YY
Could you please help me translate these UI reports to the correct queries?
Max