Hello,
In this
webpage, there's a section that shows how to view a "Billed Cost" report.
That report includes a "Served Cost" value for a campaign for a given date range.
Using the Google Ads API, how can I get the "Served Cost" for a campaign?
I have tried querying for the metrics.cost_micros (query shown below), but that value is slightly lower than what the report shows.
My query:
FROM campaign
WHERE segments.date >= '2023-01-02' AND
segments.date < '2023-01-03' AND
Also, I set the summary_row_setting to be the SUMMARY_ROW_WITH_RESULTS enum value.
Any feedback is appreciated.