1
votes

Are there any guarantees the Google Adwords API can make about the order of the entries in the response when creating objects calling mutate()?

For example if the request was sent something like:

operations = [add_adgroup_1, add_adgroup_2, add_adgroup_3]
response = client.mutate(operations)

print response['entries'] 
# >> [adgroup_1, adgroup_2, adgroup_3]

is the order [adgroup_1, adgroup_2, adgroup_3] in the response['entries'] guaranteed?

1

1 Answers

0
votes