RE: [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]],

2021-11-17 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hello, Thanks for reaching out. With regards to your concern, it looks like we have a separate thread for this issue (Case no. # 00086120). We can keep correspondence related to this issue on the other thread to limit any confusion. Reminder: Share your feedback about the Google Ads (AdWords) A

RE: [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]]

2021-11-17 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Arvi, Thanks for reaching out. Can you please provide us with the complete request and response logs so that we can look into the error? Thanks, Matt Google Ads API Team Reminder: Share your feedback about the Google Ads (AdWords) API! Take the 2021 Google Ads API and AdWords API Annual Su

[OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]]

2021-11-17 Thread Arvi
I get this error when I try to remove the Ad Group. Please help me. Thanks This is my code , Laravel Framework. $adGroupService =self::getService(AdGroupService::class); // Create operation. $adGroupOperation = new AdGroupOperation(); $adGroupOperation->setOperand(

[OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]],

2021-11-17 Thread Arvi
I get this error when I try to remove the Ad Group. Please help me. Thanks -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscri

Re: Extending invitation returns [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0], RequiredError.REQUIRED @ operations[0].operator]

2020-02-18 Thread Google Ads API Forum Advisor Prod
Hi Pete, Please use the following xml file and give it a try. http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";> https://adwords.google.com/api/adwords/mcm/v201809"; soapenv:actor="http://schema

Re: Extending invitation returns [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0], RequiredError.REQUIRED @ operations[0].operator]

2020-02-14 Thread Pete Saia
That's the documentation I was referring to in my second reply. I'm not using any client library, just trying to make vanilla API requests as demonstrated in that documentation. Could you please confirm this is not a bug in the API? I see no other reason why that error would be returned. If the

Re: Extending invitation returns [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0], RequiredError.REQUIRED @ operations[0].operator]

2020-02-14 Thread Google Ads API Forum Advisor Prod
Hi Pete, You could refer to this documentation on how to use the cURL to send the SOAP request to ManagedCustomerService. As you are using an unofficial client library, we couldn’t comment further. Please contact the owner of the library to report any issue related to the specific service that

Re: Extending invitation returns [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0], RequiredError.REQUIRED @ operations[0].operator]

2020-02-13 Thread Pete Saia
Thanks for the quick response, Xiaoming. I'm actually attempting to make this request using a curl request (as mentioned in the API's Guide): #!/bin/bash curl --header "Content-Type: application/soap+xml" \ --header "Authorization : Bearer MY_TOKEN" \ --http1.1 \ --data @invite.xml

RE: Extending invitation returns [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0], RequiredError.REQUIRED @ operations[0].operator]

2020-02-13 Thread Google Ads API Forum Advisor Prod
Hi Pete, Thanks for reaching out. RequiredError.REQUIRED occurs when the request is missing required information. This could be the result of the chain reaction of the OperatorError.OPERATOR_NOT_SUPPORTED error. As you are using a third party library when you issue the API call, I suggest you

Extending invitation returns [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0], RequiredError.REQUIRED @ operations[0].operator]

2020-02-12 Thread Pete Saia
With a properly authenticated request, extending an invitation consistently returns the following error: soap:Server[OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0], RequiredError.REQUIRED @ operations[0].operator] https://adwords.google.com/api/adwords/mcm/v201809"; xmlns:ns2= &

Re: [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]] Cancelling A bacth Job

2017-11-28 Thread Roger Orteza
Thank You API team.. On Tue, Nov 28, 2017 at 11:08 PM, 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum wrote: > Hi Roger, > > To cancel a BatchJob, you need to perform a BatchJobService.mutate() >

Re: [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]] Cancelling A bacth Job

2017-11-28 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Roger, To cancel a BatchJob, you need to perform a BatchJobService.mutate() request and pass a BatchJobOperation

[OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]] Cancelling A bacth Job

2017-11-28 Thread roger
Hi Api Team, Whats the correct code in cancelling a batch Job, Im receiving OperatorError.OPERATOR_NOT_SUPPORTED, when I tried to do: BatchJobOperation removeOp = new BatchJobOperation(); BatchJob batchJob = new BatchJob(); batchJob.setId(awaitingfileBatchJobId); removeOp.setOperator(Operator.RE

Re: Change Campaign Status [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]

2015-04-20 Thread Michael D
Ok, I solved it. It was a Problem with the serialization. Thank you for your help ;) -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=

Re: Change Campaign Status [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]

2015-04-20 Thread Danial Klimkin
Hello Michael, It doesn't look the request was formed properly. Are you using any of our client libraries? https://developers.google.com/adwords/api/docs/clientlibraries -Danial, AdWords API Team. On Monday, April 20, 2015 at 4:08:07 PM UTC+3, Michael D wrote: > > Hello Daniel, > > Ok, so

Re: Change Campaign Status [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]

2015-04-20 Thread Michael D
Hello Daniel, Ok, so I can just change the status of a paused or an active campaign. When I try to pause a Campaign this is what my sniffer shows me: But there is no value for the status in it. In my first the first Post you can see how this soap is created. Looks ike this is a Problem of seria

Re: Change Campaign Status [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]

2015-04-20 Thread Danial Klimkin
Hello Michael, No, removed objects can not be re-enabled. It was possible in the older API versions but not anymore. -Danial, AdWords API Team. On Friday, April 17, 2015 at 6:30:21 PM UTC+3, Michael D wrote: > > Yes you are right. Im trying to change the status of a removed campaign. > > So

Re: Change Campaign Status [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]

2015-04-17 Thread Michael D
Yes you are right. Im trying to change the status of a removed campaign. So its not possible to change the status of a removed campaign back to paused or enabled? But this is what fiddler gives me. There is no operation in it. POST https://adwords.google.com/api/adwords/cm/v201409/CampaignServ

Re: Change Campaign Status [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]

2015-04-16 Thread Danial Klimkin
ch, 15. April 2015 17:06:07 UTC+2 schrieb testm...@gmail.com: >> >> Hi, >> >> Im trying to change Campaignstatus. >> But i always get the Error: >> >> [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]] >> >> This is how I do it: >>

Re: Change Campaign Status [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]

2015-04-16 Thread Michael D
PERATOR_NOT_SUPPORTED @ operations[0]] > > This is how I do it: > Does someone know what I am doing wrong here? > > var client = new CampaignService.CampaignService(); > > > //create Campaign with Status > Campaign camp

Re: Change Campaign Status [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]

2015-04-15 Thread Danial Klimkin
us. > But i always get the Error: > > [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]] > > This is how I do it: > Does someone know what I am doing wrong here? > > var client = new CampaignService.CampaignService(); > > > //

Change Campaign Status [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]

2015-04-15 Thread testmccdpm3
Hi, Im trying to change Campaignstatus. But i always get the Error: [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]] This is how I do it: Does someone know what I am doing wrong here? var client = new CampaignService.CampaignService(); //create

Change Campaign Status [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]]

2015-04-15 Thread Michael D
Hi, Im trying to Change CampaignStatus. But I get the Error: [OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]] Does anyone know what Im doing wrong here? var client = new CampaignService.CampaignService(); //create Campaign with Status Campaign