Fetch adgroups/campaigns sorted by last updated

2024-03-28 Thread 'Istiak Mahmod' via Google Ads API and AdWords API Forum
Greetings Is there any way to fetch adgroups/campaigns sorted by last updated time. Currently I am fetching data using these methods. What changes should I make ? def fetch_adgroups(self, login_id=None, campaign_ids=None): """ Fetches ad groups from Google. Note: The AdWords API limits the numbe

Fetch ad groups and campaigns sorted by update time

2024-03-28 Thread 'Istiak Mahmod' via Google Ads API and AdWords API Forum
Is it possible to fetch ad groups sorted by last update time? I am fetching ad groups using this query: ``` SELECT campaign.id, ad_group.id, ad_group.name, ad_group.status FROM ad_group WHERE ad_group.status = 'ENABLED' ``` -- -- =~=~=~=~