I'm synchronizing a number of Ad Groups from a web app (where they are created) to the customer's AdWords Account via the API.
operations = [ad_group_1, ad_group_2, ad_group_3 ....]
Each AdGroup object has an attribute 'google_id' which is the ID key Google uses to identify the object.
After calling client.mutute(operations) I would like to be able to update the 'google_id' attribute for each updated object, and I would like to do this by passing the primary key of the AdGroup object to some sort of field in the operation, and for that value to be returned so I can do something like:
response = client.mutute(operations)
for item in response['items']
adgroup_id = item['my_custom_id_field]
adgroup = get_adgroup_by_id(adgroup_id )
Is this possible?