Hi Narinthorn, It is possible to update multiple campaigns in a single call, see http://code.google.com/apis/adwords/v2009/docs/reference/CampaignService.html#mutate for details. If you are looking for raw SOAP xml, then it looks something like this:
<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <soap:Header> <RequestHeader xmlns="https://adwords.google.com/api/adwords/cm/ v201003"> <authToken>XXX</authToken> <clientEmail>XXX</clientEmail> <developerToken>XXX</developerToken> <userAgent>AWAPI DotNetLib 9.0.0 - Google</userAgent> </RequestHeader> </soap:Header> <soap:Body> <mutate xmlns="https://adwords.google.com/api/adwords/cm/v201003"> <operations> <operator>SET</operator> <operand> <id>XXX</id> <budget> <deliveryMethod>ACCELERATED</deliveryMethod> </budget> </operand> </operations> <operations> <operator>SET</operator> <operand> <id>XXX</id> <budget> <deliveryMethod>ACCELERATED</deliveryMethod> </budget> </operand> </operations> </mutate> </soap:Body> </soap:Envelope> Cheers, Anash P. Oommen, AdWords API Advisor. On Aug 9, 9:03 am, iAMPICk <[email protected]> wrote: > Hi all, > > I try to update status of multiple campaigns but it not work. > I try to repeat tag <campaign> ... </campaign> It not work and I try > to repeat tag <updateCampaign> It's also not work too. > > somebody can suggest me ? > > Best Regards > Narinthorn I. -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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
