Hi, i try to use the get report with the last Google Ads Api with PHP.
But the report give me a lot of cost to "0".
Maybe it's due to a missing param for the smart campaigns.
But, the documentation is empty about this kind of problems.
What can i do ?
I'm using a request to get report like this :
SELECT
'campaign.id',
'metrics.impressions',
'metrics.clicks',
'metrics.cost_micros',
'metrics.ctr',
'metrics.all_conversions',
'metrics.average_position',
'segments.ad_network_type',
'segments.device',
'segments.click_type'
FROM campaign
WHERE metrics.impressions > '0'
AND segments.date BETWEEN '2019-10-10' AND '2019-10-10';
Thanks for help.