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 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 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

To unsubscribe, reply using remove me as the subject.


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 long data type. The
maximum integer value in PHP is 2147483647. This limitation can cause
PHP applications to generate bad requests if the ID element is larger
than 2147483647.

$AdgroupId = 9; // BAD. Generates request with
campaignID 2147483647

I got two options to fix this:

1. $AdgroupId = (float) 9; // SAFE - If ID is
represented as a string variable

2. $AdgroupId = 9; // Safe - If ID is represented as a
numeric variable

Thanks,

: Janak

On Mar 19, 1:43 pm, Mike i...@webtraffics.de wrote:
 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 = (float)$foo;

 if someone know better fix, let me know.

 Regards Mike

 On 18 Mrz., 19:38, Mike i...@webtraffics.de wrote:

  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 campains and groups, but not ads.

  Regards Mike

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 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

To unsubscribe, reply using remove me as the subject.


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,

 Daniele Sangalli

 On Mar 23, 8:58 pm, Morten Blinksbjerg Nielsen



 morten.blinksbjerg.niel...@gmail.com wrote:
  On 18 Mar., 03:07, AdWords API Advisor adwordsapiadvi...@google.com
  wrote:

   Can you confirm that this ad group id is valid?

  It's valid. The group was made with the same script, and I copied it
  from adwords.google.com.

   Can you confirm that you are using the correct credentials?

  I am. I can create groups, get lists and so on

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 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

To unsubscribe from this group, send email to 
adwords-api+unsubscribegooglegroups.com or reply to this email with the words 
REMOVE ME as the subject.


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 = (float)$foo;

if someone know better fix, let me know.

Regards Mike








On 18 Mrz., 19:38, Mike i...@webtraffics.de wrote:
 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 campains and groups, but not ads.

 Regards Mike

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 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

To unsubscribe from this group, send email to 
adwords-api+unsubscribegooglegroups.com or reply to this email with the words 
REMOVE ME as the subject.


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 campains and groups, but not ads.

Regards Mike

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 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

To unsubscribe from this group, send email to 
adwords-api+unsubscribegooglegroups.com or reply to this email with the words 
REMOVE ME as the subject.


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 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 you'll need if
  any?

  SoapFault Object ( [message:protected] = [EntityNotFound.INVALID_ID @
  operations[0].operand.adGroupId; trigger:'AdGroupId: 1268524965']

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 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


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
 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 you'll need if
 any?

 SoapFault Object ( [message:protected] = [EntityNotFound.INVALID_ID @
 operations[0].operand.adGroupId; trigger:'AdGroupId: 1268524965']

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 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


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 you'll need if
any?

SoapFault Object ( [message:protected] = [EntityNotFound.INVALID_ID @
operations[0].operand.adGroupId; trigger:'AdGroupId: 1268524965']

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 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


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
 $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 you'll need if
 any?

 SoapFault Object ( [message:protected] = [EntityNotFound.INVALID_ID @
 operations[0].operand.adGroupId; trigger:'AdGroupId: 1268524965']

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 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


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
 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 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 that owned those entities.
   Could you ensure this is not the case?

   Best,
   - Eric

   On Mar 11, 7:42 am, mariek marek.byt...@gmail.com wrote:

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 problem is on their side - but we
 haven't received a solution so far.

 we've pulled a structure report for the campaign containing the object
 ids stated as 'entitynotfound' - and they ARE PRESENT. and none of
 them has a DELETED status.

 i've emailed adwords support many soap logs on that, let me know if
 you need me to put some here as well,

 regards,
 albert

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 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


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 that owned those entities.
 Could you ensure this is not the case?

 Best,
 - Eric

 On Mar 11, 7:42 am, mariek marek.byt...@gmail.com wrote:

  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 problem is on their side - but we
   haven't received a solution so far.

   we've pulled a structure report for the campaign containing the object
   ids stated as 'entitynotfound' - and they ARE PRESENT. and none of
   them has a DELETED status.

   i've emailed adwords support many soap logs on that, let me know if
   you need me to put some here as well,

   regards,
   albert

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 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


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 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 that owned those entities.
  Could you ensure this is not the case?

  Best,
  - Eric

  On Mar 11, 7:42 am, mariek marek.byt...@gmail.com wrote:

   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 problem is on their side - but we
haven't received a solution so far.

we've pulled a structure report for the campaign containing the object
ids stated as 'entitynotfound' - and they ARE PRESENT. and none of
them has a DELETED status.

i've emailed adwords support many soap logs on that, let me know if
you need me to put some here as well,

regards,
albert

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 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


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 adwordsapiadvi...@google.com
wrote:
 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 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 that owned those entities.
   Could you ensure this is not the case?

   Best,
   - Eric

   On Mar 11, 7:42 am, mariek marek.byt...@gmail.com wrote:

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 problem is on their side - but we
 haven't received a solution so far.

 we've pulled a structure report for the campaign containing the object
 ids stated as 'entitynotfound' - and they ARE PRESENT. and none of
 them has a DELETED status.

 i've emailed adwords support many soap logs on that, let me know if
 you need me to put some here as well,

 regards,
 albert

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 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


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 problem is on their side - but we
 haven't received a solution so far.

 we've pulled a structure report for the campaign containing the object
 ids stated as 'entitynotfound' - and they ARE PRESENT. and none of
 them has a DELETED status.

 i've emailed adwords support many soap logs on that, let me know if
 you need me to put some here as well,

 regards,
 albert

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 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


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 marek.byt...@gmail.com wrote:
 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 problem is on their side - but we
  haven't received a solution so far.

  we've pulled a structure report for the campaign containing the object
  ids stated as 'entitynotfound' - and they ARE PRESENT. and none of
  them has a DELETED status.

  i've emailed adwords support many soap logs on that, let me know if
  you need me to put some here as well,

  regards,
  albert

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 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


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 campaign containing the object
ids stated as 'entitynotfound' - and they ARE PRESENT. and none of
them has a DELETED status.

i've emailed adwords support many soap logs on that, let me know if
you need me to put some here as well,

regards,
albert

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Have you migrated to v200909 yet?
The v13 sunset is on April 22, 2010.

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 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


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:
 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',
                 'operand':criterion.as_dict()
             })

 self._adwords_call(server, 'Mutate', operations)
 which will call something similar to:
 ...
 eval('server.%s(operations)' % method)

 On Feb 23, 7:47 am, AdWords API Advisor adwordsapiadvi...@google.com
 wrote:



  Hi,

  Which language are you using?  Are you using one of the client
  libraries?  Can you post some of the code that is used to make this
  request?

  Best,
  - Eric Koleda, AdWords API Team

  On Feb 22, 9:04 pm, Aihua zhang...@gmail.com wrote:

   Noticed that when try to pause trials or update trials through API
   calls in production, we got some EntityNotFound.INVALID_ID errors. But
   later after we re-try it again, it seems working fine. Since it's on
   production, we didn't store the soap xml. And it's hard to reproduce
   it. We are using the python client lib, any idea?

   Here is a sample trial, when we tried to pause 502404022, got Invalid
   id; but later when try it again, it's ok. The trial and the adgroup
   are on the network.
   502404022: [EntityNotFound.INVALID_ID @
   operations[0].operand.adGroupId; trigger:'467577187']

-- 
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-...@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.



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',
'operand':criterion.as_dict()
})

self._adwords_call(server, 'Mutate', operations)
which will call something similar to:
...
eval('server.%s(operations)' % method)



On Feb 23, 7:47 am, AdWords API Advisor adwordsapiadvi...@google.com
wrote:
 Hi,

 Which language are you using?  Are you using one of the client
 libraries?  Can you post some of the code that is used to make this
 request?

 Best,
 - Eric Koleda, AdWords API Team

 On Feb 22, 9:04 pm, Aihua zhang...@gmail.com wrote:

  Noticed that when try to pause trials or update trials through API
  calls in production, we got some EntityNotFound.INVALID_ID errors. But
  later after we re-try it again, it seems working fine. Since it's on
  production, we didn't store the soap xml. And it's hard to reproduce
  it. We are using the python client lib, any idea?

  Here is a sample trial, when we tried to pause 502404022, got Invalid
  id; but later when try it again, it's ok. The trial and the adgroup
  are on the network.
  502404022: [EntityNotFound.INVALID_ID @
  operations[0].operand.adGroupId; trigger:'467577187']

-- 
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-...@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.



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 create campains and
 adgroups, and list them based on the examples provided with the latest
 AdWords API PHP Client Library.

 I have a problem when trying to create an adgroupad. Indeed, I always
 get the message EntityNotFound.INVALID_ID @ operations
 [0].adGroupAd.adGroupId; trigger:'AdGroupId: 2147483647'. The problem
 here is that the adgroupid I use is not 2147483647.

 Here is the code I user:

 // Get AdWordsUser from credentials in ../auth.ini
 // relative to the AdWordsUser.php file's directory.
 $user = new AdWordsUser();

 // Log SOAP XML request and response.
 $user-LogDefaults();

 // Get the AdGroupadsService.
 $adService = $user-GetAdGroupAdService();

 $AdGroupAdNEW = new AdGroupAd();
 $AdGroupAdNEW-adGroupId = 570837;
 $AdGroupAdNEW-status = 'PAUSED';

 $ad = new TextAd();
 $ad-url='http://www.test.com';
 $ad-displayUrl='http://www.test.com';
 $ad-headline='This is my title';
 $ad-description1='This is my desc1.1';
 $ad-description2='This is my desc2.1';
 $AdGroupAdNEW-ad = $ad;

 $operations = new AdGroupAdOperation($AdGroupAdNEW,NULL,'ADD');
 $adgroupAdReturnValue = $adService-mutate($operations);

 // Display new campaigns.
 foreach ($adgroupAdReturnValue-value as $ad)
 {
         print 'New ad with name '.$ad-name.' and id '.$ad-id.' was created.
 \n';

 }

 The adgroup I would like to use is using the ID 570837. My
 authentification settings are the same as the ones used when creating
 the campains and adgroup. What do I do wrong here ?

 Many thanks in advance for your help !!

--

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-...@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.




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 
 here:http://groups.google.com/group/adwords-api/browse_thread/thread/d9e41...

 We have an MCC account and when I want to delete an Ad Text of another
 account (which is available through our MCC account) the Google API
 returns the following error:

 [EntityNotFound.INVALID_ID @ operations[0].adGroupAd.ad.id]

 Both AdgroupID (1590327034) and AdID exists (3750066754), i'm using
 this classes:http://code.google.com/p/google-api-adwords-php/downloads/list

 The wierd thing is that adding new Adgroups + Ad Texts is no problem,
 but when I want to delete them it returns  [EntityNotFound.INVALID_ID
 @ operations[0].adGroupAd.ad.id].

 Could you tell me how to fix this problem?

 See also below:

 SoapFault Object
 (
     [message:protected] = [EntityNotFound.INVALID_ID @ operations
 [0].adGroupAd.ad.id]
     [string:private] =
     [code:protected] = 0
     [file:protected] = C:\xampp\htdocs\Otmtools\classes\adwords_api
 \src\Google\Api\Ads\Common\Lib\AdsSoapClient.php
     [line:protected] = 160
     [trace:private] = Array

--

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-...@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.