Hi
I'm a fairly amateurish python user currently creating/updating CRM user based audiences using googleads.
While I've been able to do the above, is it possible to retrieve a list of (all, or just CRM) audiences that exist? names and ids would be more than enough info
I am guesing it involves:
user_list_service = client.GetService('AdwordsUserListService', version='v201702')
but what I would need to do to user_list_service to get the data I require.
I do something similar with facebookads by using:
audiences = [{"id":d['id'], "name":d['name']} for d in audiences]
Any advice appreciated, cheers
Stephen