Hi, I am getting strange output on cost micros and average cost. I am not understanding what units these are in.
I'm running a GAQL on the ad_group_audience_view report.
"SELECT ad_group_audience_view.resource_name,
ad_group.id, metrics.all_conversions_value, metrics.clicks, metrics.cost_micros, metrics.average_cost, ad_group_criterion.status " +
"FROM ad_group_audience_view " +
"WHERE metrics.clicks > 0 " +
"AND segments.date BETWEEN " + longTermDateFormatted + " AND " + todayDateFormatted);
The kind of data I get is as follows -
Resource Name - customers/4510250445/adGroupAudienceViews/134467879343~1652176653525
All conversion value 0
Clicks 32
Cost Micros 44647793
Average Cost 1395243.53125
As you can see the Cost Micros and the Average Cost are much much too high for only 32 clicks.
Can anyone tell me what these metrics are defined as please?