Hi,
In the Google Ads plataform I can see the results for my campaigns of the type "Smart", however when I use the API to create a report of my campaigns:
const report = AdsApp.report("SELECT
campaign.name, metrics.conversions, metrics.cost_micros " +
"FROM campaign " +
"WHERE segments.date BETWEEN '" + data_inicial + "' AND '" + data_final + "' ");
I get results for all my campaings, except for campaigns of the type "Smart".
How can I get results for this type of campaign? I need conversions and cost.
Thank You