Thanks now we have another problem, we have about 1600 adgroups with 8000 keywords online, if we use getAllCriteria it is always a single request, so we need 1600 requests to update our keyword list. this take a long time about 30 min. how could we speed up this request?
thanks christian On 16 Jun., 20:35, AdWords API Advisor <adwordsapiadvi...@google.com> wrote: > Hello, > > It's possible to add multiple ad groups to the same campaign in one > SOAP request. See addAdGroupList(): > > http://code.google.com/apis/adwords/docs/developer/AdGroupService.htm... > > It's also possible to update multiple ad groups in one SOAP request. > See updateAdGroupList(): > > http://code.google.com/apis/adwords/docs/developer/AdGroupService.htm... > > However, using AdWords API v13, it's not possible to both add and > update ad groups in the same SOAP request. You'd have to break that up > into separate requests for adding and updating. > > Once AdWords API v2009 is available in Production, you should be able > to both add and update in a single AdGroupService.mutate() request. > > Cheers, > -Jeff Posnick, AdWords API Team > > On Jun 16, 10:05 am, linux <lak...@munichx.de> wrote: > > > Hi, > > > we try to change and add serveral adgoups at one xml file. Is this > > possbile, e.g > > > $request_xml = '<addAdGroup>' . > > '<campaignId>5050</campaignId>' . > > '<newData>'. > > > > '<name>3</name><keywordMaxCpc>20000</keywordMaxCpc>' . > > '</newData>' . > > '</addAdGroup>'. > > '<addAdGroup>' . > > '<campaignId>5050</campaignId>' . > > '<newData>'. > > > > '<name>4</name><keywordMaxCpc>20000</keywordMaxCpc>' . > > '</newData>' . > > '</addAdGroup>'. > > '<addAdGroup>' . > > '<campaignId>5050</campaignId>' . > > '<newData>'. > > > > '<name>5</name><keywordMaxCpc>20000</keywordMaxCpc>' . > > '</newData>' . > > '</addAdGroup>'; > > only the fist addadgroup is processed. > > > thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en -~----------~----~----~----~------~----~------~--~---