Re: BatchJobService: how to PHP

2016-03-07 Thread 'Umesh Dengale' via AdWords API Forum
Hello, Adding each keyword will consider as one operation and BatchJobService. mutate operation (with ADD operator) takes array of BatchJobOperation

Re: BatchJobService: how to PHP

2016-03-07 Thread giorgio . jobtome
Hi, thanks for the answer. I've already read all your guides but still not understand how to use BatchJobService. I mean, im easily trying to add 100negative keywords per campaign and, of course, im using one result foreach kw. If I want to add those 100kws in a one result I have to add 400rows

Re: BatchJobService: how to PHP

2016-03-03 Thread 'Umesh Dengale' via AdWords API Forum
Hello, You could use the BatchJobService to add keywords in bulk. The BatchJobService allows asynchronous processing. You could upload 500 keywords in one request. Please check our batch processing guide

BatchJobService: how to PHP

2016-03-03 Thread giorgio . jobtome
Hi all, I was reading the BatchJobService guide on google adwords but I didnt understand how I can use it for massive operations in PHP. For example: $operations[] = new CampaignCriterionOperation($negativeCriterion, 'ADD'); $result = $campaignCriterionService->mutate($operations); That code