I'm a bit confused what is meant by operations here. Say for Eg: I have 50 different Advertisement campaigns. I have created 25 User lists which needs to be applied to all these 50 different campaigns. Once all 25 UserLists are uploaded to Adwords using the API (UserListService), then using the UserList ID/File ID, can we map it across 50 campaigns in one shot?
Today, I'm performing the CampaignCriterion service.ADD method to upload each user list against a specific campaign. This means performing the upload operation 50*25 times. I would like to perform it in one single call (25 calls to create user lists and 1 call to map it against campaigns) Thanks Paul On Monday, December 11, 2017 at 2:48:36 PM UTC-8, Sreelakshmi Sasidharan (AdWords API Team) wrote: > > Hi Paul, > > Once you have the user lists uploaded, you will need to use the > CampaignCriterionService > <https://developers.google.com/adwords/api/docs/reference/v201710/CampaignCriterionService> > and > add multiple operations to the CampaignCriterionOperation > <https://developers.google.com/adwords/api/docs/reference/v201710/CampaignCriterionService.CampaignCriterionOperation.html>[] > > while you perform the mutate request. You can add up to 5000 operations in > a request. However, for performance reasons we typically recommend passing > no more than 2,000 operations per request. Please check here > <https://developers.google.com/adwords/api/docs/appendix/limits#general> for > more details. Please check this > <https://github.com/googleads/googleads-java-lib/blob/master/examples/adwords_axis/src/main/java/adwords/axis/v201710/targeting/AddCampaignTargetingCriteria.java> > sample > in Java to see how multiple operations can be done via single mutate > operation. > > Thanks, > Sreelakshmi, AdWords API Team > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. Visit this group at https://groups.google.com/group/adwords-api. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/72f9a155-ed9a-43bc-bddd-a778758534d2%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
