Hi,
Thank you for reaching out to the Google Ads API support team.
Upon checking your concern, I understand that you have made budget changes to your campaign ID "21104182496" and you want to retrieve these changes from the Google Ads API. I would recommend you to kindly refer to the
change_event resource to retrieve the campaign budget changes from the Google Ads API. Kindly note that the list of changes must be filtered by date. The date range must be within the past 30 days. Please find the sample GAQL query as per your requirement:
SELECT change_event.campaign, change_event.change_date_time,
change_event.change_resource_name, change_event.change_resource_type,
change_event.changed_fields, change_event.resource_name,
change_event.resource_change_operation, campaign.id, campaign.name,
campaign.campaign_budget FROM change_event WHERE campaign.id = 21104182496 AND
change_event.change_date_time BETWEEN '2024-03-01' AND '2024-04-14' AND
change_event.change_resource_type = 'CAMPAIGN_BUDGET' ORDER BY
change_event.change_date_time DESC LIMIT 5
Additionally, you can utilize the
Google Ads Query Builder and
Query Validator to build and validate the queries for retrieving the data from the Google Ads API.
This message is in relation to case "ref:!00D1U01174p.!5004Q02tP5xV:ref" (ADR-00231137)
Thanks,
 |
Google Ads API Team |
