For example:
In Google Ads for a PMax campaign on 14-06-2022 we have:
2.124 clicks and 926,71 EUR costs.
When we get the clicks and costs for the campaign with Google ADS API for that date we get:
2.037 clicks and 877,22 EUR costs.
We use the following query:
SELECT
metrics.clicks, metrics.average_cpc, segments.product_item_id,
campaign.id FROM shopping_performance_view WHERE
campaign.id = xxxxxxxxxx
And we do clicks * avarage_cpc to get the costs.
How do we get the same results as in Google Ads with the Google Ads API?
Or how can we query the missing clicks/costs?