AdWords API Re: EntityNotFound.INVALID_ID

2010-04-01 Thread Morten Blinksbjerg Nielsen
On 31 Mar., 11:54, Janak janakprajap...@gmail.com wrote: I have found that this is the problem with PHP, [..] Perfect! It works now, thanks! :-) - Morten -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Have you migrated to v200909 yet? The v13 sunset is on April 22, 2010. Also find us

AdWords API Re: EntityNotFound.INVALID_ID

2010-03-31 Thread Janak
I have experience the same issue in the Sandbox with php lib example - UpdateAdGroup.php file. I had created a new Adgroup in the Sandbox and while I am updating it, I am getting the same error message. I have found that this is the problem with PHP, The PHP language does not support the 64 bit

AdWords API Re: EntityNotFound.INVALID_ID

2010-03-24 Thread AdWords API Advisor
Hi, Can you post the SOAP XML request and response that demonstrates this behavior? Best, - Eric On Mar 24, 10:21 am, daniele.sanga...@tradedoubler.com sangallidani...@gmail.com wrote: We are experiencing the same problem here. Can we please know if there is any update on this? Regards,

AdWords API Re: EntityNotFound.INVALID_ID

2010-03-19 Thread Mike
ok. i have done: Original Code in PHP lib: // Get the AdGroupAdService. $adGroupAdService = $user-GetAdGroupAdService('v200909'); $adGroupId = '3121652289'; Fix: // Get the AdGroupAdService. $adGroupAdService = $user-GetAdGroupAdService('v200909'); $foo = '3121652289'; $adGroupId =

AdWords API Re: EntityNotFound.INVALID_ID

2010-03-18 Thread Mike
I experience the same problem in Sandbox with php lib. My code is based on examples/AddAds.php. Basicly I just changes $adGroupId='3121652289'. SoapFault Object ( [message:protected] = [EntityNotFound.INVALID_ID @ operations[0].operand.adGroupId; trigger:'AdGroupId: 2147483647'] I can create

AdWords API Re: EntityNotFound.INVALID_ID

2010-03-17 Thread mariek
Concerining my last message I finally found bug on my site , sorry for problem On 16 Mar, 16:09, mariek marek.byt...@gmail.com wrote: I also confirm having problem with ruby lib On 16 Mar, 00:20, Morten Blinksbjerg Nielsen morten.blinksbjerg.niel...@gmail.com wrote: I'm still having

AdWords API Re: EntityNotFound.INVALID_ID

2010-03-17 Thread AdWords API Advisor
Hi Morten, Can you confirm that this ad group id is valid? Can you confirm that you are using the correct credentials? Best, - Eric On Mar 15, 7:20 pm, Morten Blinksbjerg Nielsen morten.blinksbjerg.niel...@gmail.com wrote: I'm still having problems. I use the PHP library, and I've just

AdWords API Re: EntityNotFound.INVALID_ID

2010-03-16 Thread Morten Blinksbjerg Nielsen
I'm still having problems. I use the PHP library, and I've just upgraded to version 2.0.1. My code is based on examples/AddAds.php. Basicly I just changes $adGroupId to match one of my groups. I can create campains and groups, but not ads. Hope someone can help :-) Let me know what more info

AdWords API Re: EntityNotFound.INVALID_ID

2010-03-16 Thread mariek
I also confirm having problem with ruby lib On 16 Mar, 00:20, Morten Blinksbjerg Nielsen morten.blinksbjerg.niel...@gmail.com wrote: I'm still having problems. I use the PHP library, and I've just upgraded to version 2.0.1. My code is based on examples/AddAds.php. Basicly I just changes

AdWords API Re: EntityNotFound.INVALID_ID

2010-03-15 Thread mariek
Sorry for my mistake, I use authTokens of course, I confirm I used account that owns those keywords. On Mar 12, 11:41 pm, AdWords API Advisor adwordsapiadvi...@google.com wrote: Hi, What are you using instead of authTokens? There have been various other reported cases of this error, and the

AdWords API Re: EntityNotFound.INVALID_ID

2010-03-12 Thread mariek
I don't use authToken functionality On Mar 11, 5:10 pm, AdWords API Advisor adwordsapiadvi...@google.com wrote: Hi All, I've also seen cases recently where this error was returned because the account used to generate the authToken (or specified in the clientEmail header) was not the account

AdWords API Re: EntityNotFound.INVALID_ID

2010-03-12 Thread AdWords API Advisor
Hi, What are you using instead of authTokens? There have been various other reported cases of this error, and the core engineering team is looking into the issue. I'll update this thread when I have more information. Best, - Eric On Mar 12, 7:40 am, mariek marek.byt...@gmail.com wrote: I

AdWords API Re: EntityNotFound.INVALID_ID

2010-03-12 Thread AdWords API Advisor
Hi All, A bug found that occasionally caused this error to be returned even when the ID was valid. A fix was recently pushed to production. Let me know if you continue to see this problem. Best, - Eric Koleda, AdWords API Team On Mar 12, 5:41 pm, AdWords API Advisor

AdWords API Re: EntityNotFound.INVALID_ID

2010-03-11 Thread mariek
I experience the same problem with ruby lib On 11 Mar, 04:01, Albert albert.ben...@gmail.com wrote: i have to disagree with Eric, we've been having this issue for about a month now (using .net/c#). no data is corrupted. our soap logs clearly show that. adwords have confirmed that the

AdWords API Re: EntityNotFound.INVALID_ID

2010-03-11 Thread AdWords API Advisor
Hi All, I've also seen cases recently where this error was returned because the account used to generate the authToken (or specified in the clientEmail header) was not the account that owned those entities. Could you ensure this is not the case? Best, - Eric On Mar 11, 7:42 am, mariek

AdWords API Re: EntityNotFound.INVALID_ID

2010-03-10 Thread Albert
i have to disagree with Eric, we've been having this issue for about a month now (using .net/c#). no data is corrupted. our soap logs clearly show that. adwords have confirmed that the problem is on their side - but we haven't received a solution so far. we've pulled a structure report for the

AdWords API Re: EntityNotFound.INVALID_ID

2010-02-24 Thread AdWords API Advisor
Hi, It looks like the ids are somehow getting corrupted before or while you are making the request. Is it possible to check the ids in the operations before you make the request and compare them to the ids in the returned errors. Best, - Eric On Feb 23, 7:05 pm, Aihua zhang...@gmail.com wrote:

AdWords API Re: EntityNotFound.INVALID_ID

2010-02-23 Thread Aihua
We are using Python, and using the python client library for the low level calls. Here is some sample logic: ... server = self._connect('AdGroupCriterion') operations = [] for criterion in criteria: operations.append({ 'operator': 'SET',

AdWords API Re: EntityNotFound.INVALID_ID

2009-12-01 Thread prouted
Hi, I've found the problem: $AdGroupAdNEW-adGroupId = 570837; We should not use around the ID, removing them made the script run properly. I hope this will help ;) On Dec 1, 10:09 am, prouted remindtestlive...@gmail.com wrote: Hi, I'm new using the Google Adwords API. I managed to

AdWords API Re: EntityNotFound.INVALID_ID

2009-11-30 Thread AdWords API Advisor
Hi, Do you have the SOAP XML request and response from this request? Perhaps the id's aren't being passed correctly. Best, - Eric Koleda, AdWords API Team On Nov 26, 7:47 am, m.dekun...@onetomarket.nl extramcc +...@onetomarket.com wrote: I'm having the same sort of problem as