Hi team,
I am using the below query for fetching the metrics for audience segments from Google Ads :
SELECT
customer.id,
customer.descriptive_name,
campaign.id,
campaign.name,
campaign.status,
campaign_criterion.criterion_id,
segments.date,
segments.day_of_week,
metrics.impressions,
metrics.clicks,
metrics.cost_micros,
metrics.conversions,
metrics.conversions_value,
segments.device,
metrics.cross_device_conversions,
metrics.all_conversions,
metrics.all_conversions_value
FROM campaign_audience_view
Where segments.date = {}
However when I check the output with the google ads interface, there is discrepancy with the result from the above query.
For example :
Clicks of a audience segment in Google Ads : 2043
Clicks of same audience segment via API from query above : 1078
Why is this the case ?
Looking forward for your reply !