Hi,
Thanks for reaching out to the Google Ads API Forum.
I understand that you wanted to get daily data of campaign performance. You may use a campaign report. Here’s the below sample GAQL:
SELECT
campaign.status,
segments.device,
metrics.impressions,
metrics.clicks,
metrics.ctr,
metrics.average_cpc,
metrics.cost_micros
FROM campaign
WHERE segments.date ='2022-09-09'
For example, if you would like to retrieve campaign attributes and performance metrics such as cost using GoogleAdsService.Search and GoogleAdsService.SearchStream. For more reporting features, you may refer to this page.
If you encounter any API error, then you may provide complete logs (complete request and response logs with request ID and request header) generated, so that we can check better.
Please take note to send logs details via reply privately to author option.
Regards,
|
||||||