Awesome, Thank you! Not sure how to use the operand to set the id, as I've never had to do that before. If you could give me some pesudocode or php code to show me how to do that, that would be great!
On Tuesday, July 10, 2018 at 10:23:16 PM UTC-6, Luis Xander Talag (AdWords API Team) wrote: > > Hi Sean, > > You don't need a selector if your goal is just to pause the ad group. All > you need to do is to create a loop for your array and set directly each ad > group id > <https://developers.google.com/adwords/api/docs/reference/v201806/AdGroupService.AdGroup#id> > and > ad group status > <https://developers.google.com/adwords/api/docs/reference/v201806/AdGroupService.AdGroup#status> > to > PAUSE. You may refer to below code snippet for simple SET operation of the > ad group. > > <soapenv:Body> > <mutate xmlns="https://adwords.google.com/api/adwords/cm/v201806"> > <operations> > <operator>SET</operator> > <operand> > <id>1234567890</id> > <status>PAUSED</status> > </operand> > </operations> > </mutate> > </soapenv:Body> > > > Thanks and regards, > Luis > AdWords API Team > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads 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 and Google Ads 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/8cbfdcb0-98b0-4ce3-883a-e7ab87136425%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
