SELECT metrics.all_conversions_value, metrics.cost_micros, segments.device FROM customer WHERE segments.date DURING TODAY
The requests are done to the same account, it's been verified.
Could you please take a look, when you have time?
|
||||||
$query = (new ReportQueryBuilder())
->select([
'AllConversionValue', 'Cost', 'Device'
])
->from(ReportDefinitionReportType::ACCOUNT_PERFORMANCE_REPORT)
->where('ClickType')->in(['CALLS'])
->where('Device')->in(['HIGH_END_MOBILE'])
->duringDateRange(ReportDefinitionDateRangeType::TODAY)
->build();
$reportSettingsOverride = (new ReportSettingsBuilder())
->build();
Hi there,
Thanks for getting back to us.
We’re glad to know your issue has been resolved. For us to check what value of ROAS you’re referring to, could you please provide us with the complete Ads UI screenshot via Reply privately to author option, so that I can verify the appropriate field using the Google Ads API?
Regards,
|
||||||