Can I get a per impression report?

2015-11-02 Thread Yaakov Gesher
I'm looking for a way to get an "Impression Performance Report", much like 
the Click Performance Report, for a customer who wants to run his own 
algorithms in order to analyze the data himself.  Is there any way to 
receive performance data per impression?

Thanks a bunch

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/18e358d4-80be-49be-98a6-d4c28837dca6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


API data problem

2015-11-02 Thread Cynthia Carter
Hi,

I am using google Adword latest API version, I am facing a typical problem 
using the API. I grab all campaign data and store in my own application. 
For some company I am getting 100% accurate data, but for some specific 
company some percentage data is missing. 
So can any one help to find out a real solution.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f4459046-2562-4657-b25c-fb0be142f134%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Ad Scheduling in PHP - 2015

2015-11-02 Thread tamsin
 $adSchedule->dayOfWeek = $days[i];
Should this say $day rather than $days[i]?

On Thursday, 22 October 2015 20:57:57 UTC+1, Doug Silksone wrote:
>
> Hey guys - First post here. 
>
> Purpose of this code section is to set Ad Scheduling between 00:00 - 04:00 
> every weekday. Unfortunately, the code I've written has been breaking the 
> rest of my PHP script. 
> At first glance, can you see where I'm going wrong? 
>
>
> $campaignCriterionService =   $user->GetService('CampaignCriterionService'
> , ADWORDS_VERSION);
>
>   $operations = array();
>   $campaignID = "XXX-XXX-X";
>   $days = array(
>   'MONDAY',
>   'TUESDAY',
>   'WEDNESDAY',
>   'THURSDAY',
>   'FRIDAY'
>   );
>   
>  foreach($days as $day) {
>  //Set Variables
>  $adSchedule = new AdSchedule();
>  $adSchedule->dayOfWeek = $days[i];
>  $adSchedule->startHour = 0;
>  $adSchedule->startMinute = 'ZERO' ;
>  $adSchedule->endHour = 4;
>  $adSchedule->endMinute = 'ZERO' ;
>  
>  $adScheduleCriterion = new AdScheduleCriterion();
>  $adScheduleCriterion->campaignId = $campaignID;
>  $adScheduleCriterion->criterion = $adSchedule;
>  
>  $adScheduleCriteria[] = $adScheduleCriterion;
>  //Create the Operation
>  $operation = new CampaignCriterionOperation();
>  $operation->operand = $adScheduleCriterion;
>  $operation->operator = 'ADD';
>  $operations[] = $operation;
>  
>  }
>  //Mutate!
>   $result = $CampaignCriterionService->mutate($operations);
>
>
>
>
>
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/01fed972-f5f0-4015-9ab7-db80527cd395%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


after i get all those token and enter into auth.ini. what is the next step?

2015-11-02 Thread yuggo hor
i dont know what is the next step after i get all the token and i input 
into the auth.ini . due to many root in the library . how can i make a 
example and run it

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6e34cace-fd6a-4abb-b9e2-41c3a626067c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Developer Token Approval Pending since 3 years

2015-11-02 Thread Reactive Media Pty Ltd
Dear Support,

We are a Digital Agency in Australia and we are working around automated 
reporting for our clients. In this process we need Adwords API developer 
token for us to link Adwords to our reporting tool.

Can you please let us know when this can be approved.

We have called our Adwords Account manager and they have suggested us to 
post a question here.

If you can get back to us on this issues, that would be great.

Thanks,
Prathiba

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4c4a86ac-e0a1-4903-ab17-0c4f66c85029%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Not pulling in all accounts

2015-11-02 Thread Lexxy Sturgess
Hello,

I'm trying to pull in all the sessions across the accounts I have on my MCC 
account but it's refusing to pull one of them in.

I have 4 accounts and 3 out of the 4 are giving me their stats but I can't 
get it to acknowledge the existence of the 4th.

Any help would be greatly appreciated.

I'll provide an extra information needed.

Thanks.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e15e02e5-671e-464f-9cdf-e13dac12dfba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: What happened to the field LopMostSpecificTargetId?

2015-11-02 Thread Anthony Madrigal
Hi Johnny,

The field LopMostSpecificTargetId was recently added to v201509 
. If you are 
using an earlier version of the API, you will run into this error. 

Please follow our migration guide 
 
for v201509.

Regards,
Anthony
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/504bc1e0-ae04-4bfd-af98-133e1546f9fc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: trigger vs fieldPath

2015-11-02 Thread Umesh Dengale
Hi Yong,

The *KeywordText *field is removed from DISPLAY_KEYWORD_ 

PERFORMANCE_REPORT 

 in 
the AdWords API v201506. The KeywordText field was duplicate of the field 
Criteria 
.
 
Please check deprecation 
 section 
of v201506 for more details.

Thanks,
Umesh Dengale, AdWords API Team. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c9f731b0-6995-4e32-bb92-0b1659fc812b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Adwords API and Merchant API with product id with differing case

2015-11-02 Thread Umesh Dengale
Hi David,

Could you please provide me privately the id value from the merchant API, 
the OfferId 

 value 
from the Shopping performance report 
,
 
the Shopping performance report request and clientCustomerId? Click *Reply 
privately to author* in the forum when responding.

Thanks,
Umesh, AdWords API Team.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7ba17246-fa0b-497c-9b14-7d39b069a325%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Can I get a per impression report?

2015-11-02 Thread Anthony Madrigal
Hello,

Unfortunately, there is no report or service that segments the data by 
impression.

Regards,
Anthony
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/43c757f5-7c02-44e3-9aff-ca0d4667ecc1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: after i get all those token and enter into auth.ini. what is the next step?

2015-11-02 Thread Umesh Dengale
Hello,

You could download 
 the PHP 
client library and example code. You could follow the steps given in the 
Getting 
started 
 
section 
of the PHP client library document to run the example code.

Thanks,
Umesh, AdWords API Team.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/af29ede1-c704-4c62-a44d-d6ed68966281%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Fail to submit the AdWords API Token Application

2015-11-02 Thread yuval
Hi
I recently created Manager account MCC in order to automate another regular 
active account via adwords api. 
Upload offline conversions is the main purpose why I applied for a 
developer token.
The accounts are linked, however, every time i try to apply the api token 
form , the submission 
fails and the form scrolls to that section:

We noticed your account doesn't have much spend history with AdWords. Keep 
in mind the AdWords API is meant to help large agencies and advertisers 
manage their campaigns at scale.
  - You must *link your active AdWords accounts under the AdWords 
manager account (MCC) through which you are applying for a token* by 
following the instructions here. 

  - Make sure you have a fully functional website (not a demo site) so 
we can verify your company's business model.
  - Include thorough design documents (greater than 1 page) in the 
attachment section near the bottom of this form.

As said, 
- my mcc acount is linked with admin access to a spend active account
- websites are provided and getting traffic from adwords campaigns
- document is attached to the submission though it only describe a tool 
that is provided by google code here 


I really can't see what it is I'm missing
Appreciate your help

Yuval.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/516706d5-143d-4117-b3af-24ae5bca3741%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Tracking Template on AdGroup Level (or higher)

2015-11-02 Thread Dorian Kind
Hey Josh,

any news on this topic? The current situation makes it very hard to use 
tracking templates for DSA campaigns because there's no way to tell whether 
the final URL of the dynamically generated ad already contains a query 
string separator or not.

Thanks for any feedback and best regards,
Dorian

On Thursday, June 18, 2015 at 3:02:40 PM UTC+2, Josh Radcliff (AdWords API 
Team) wrote:
>
> Hi Pete,
>
> Thanks for the suggestion. I'll pass this along to the upgraded URLs team.
>
> Cheers,
> Josh, AdWords API Team
>
> On Wednesday, June 17, 2015 at 9:56:11 AM UTC-4, pete wrote:
>>
>> Completely agree with Mark - Google have used some run-time logic to 
 append params with the appropriate param delimiter in the past.

>>>
>> In fact - a Value Track parameter {delim} would be perfect.
>>
>> What say you Google?
>>
>> pete 
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/03cfd0bd-ef98-44dd-a15e-9039aa76d86b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Error during product partition creation

2015-11-02 Thread Josh Radcliff (AdWords API Team)
Hi Peter,

Are you running multiple threads that are mutating the trees in question? I 
ask because I looked at two of your requests from today that failed 
with PRODUCT_PARTITION_ALREADY_EXISTS followed 
by PRODUCT_PARTITION_DOES_NOT_EXIST, and in both cases the partition in 
question *does* already exist in the ad group.

The requests I checked were for ad group IDs 21637072081 and 21637229281, 
both under campaign ID 345581401.

Thanks,
Josh, AdWords API Team

On Monday, November 2, 2015 at 12:30:38 AM UTC-5, peter... wrote:
>
> Hi Josh
>
> Could the usage of not using distinct temporary IDs cause this problem ? 
> As stated above, 99% of my requests succeed (and we've actually sent 
> millions of them until now). 
>
> The tree is correct for our purposes. It will be changed by other requests 
> later on. The problem doesn't seem to be related to the actual tree anyhow. 
> We also see this error when we are trying to add child partitions to 
> already existing ones. This, however, is very hard to reproduce for me 
> since I cannot just add logs for every SOAP request to our live application 
> and wait for a few days for this to happen. Even this simple case required 
> hammering against the API with a local test script for a few hours. 
>
> Thanks! 
> Peter
>
> Am Freitag, 30. Oktober 2015 20:43:58 UTC+1 schrieb Josh Radcliff (AdWords 
> API Team):
>>
>> Hi,
>>
>> I noticed that your request is operating on two ad groups but you are 
>> reusing the same temporary ID for both. I would recommend using distinct 
>> temporary IDs for distinct *Biddable/NegativeAdGroupCriterion* within a 
>> single request.
>>
>> Also, in each case you are constructing what looks like an invalid 
>> product partition tree 
>> ,
>>  
>> consisting of:
>>
>>  ROOT (-1 biddable SUBDIVISION)
>> /
>>   ProductOfferId (negative UNIT)
>>
>> It looks like you are trying to create a 2nd level of the tree that 
>> excludes *everything*, since you don't have other UNIT nodes at that 
>> level and the object is a *NegativeAdGroupCriterion*. If you subdivide 
>> the tree by a dimension (offer ID in this case), you must have at least 
>> *two* UNIT nodes: one for "Everything else" (*ProductOfferId* with a 
>> null value) and at least one for a specific *ProductOfferId* with a 
>> non-null value. Otherwise, the subdivision does not serve any purpose.
>>
>> Thanks,
>> Josh, AdWords API Team
>>
>> On Friday, October 30, 2015 at 6:35:58 AM UTC-4, peter... wrote:
>>>
>>> It looks like that we have the same problem. 
>>>
>>> We create a brand new AdGroup, then send the following request:
>>>
>>> 
>>>https://adwords.google.com/api/adwords/cm/v201506
>>> ">
>>> 
>>>ADD
>>> https://adwords.google.com/api/adwords/cm/v201506"; 
>>> xsi:type="ns2:BiddableAdGroupCriterion">
>>>22340202143
>>>
>>>-1
>>>SUBDIVISION
>>>
>>>  
>>> 
>>> 
>>>ADD
>>> https://adwords.google.com/api/adwords/cm/v201506"; 
>>> xsi:type="ns3:NegativeAdGroupCriterion">
>>>22340202143
>>>
>>>UNIT
>>>-1
>>>
>>>
>>> 
>>> 
>>> 
>>>ADD
>>> https://adwords.google.com/api/adwords/cm/v201506"; 
>>> xsi:type="ns4:BiddableAdGroupCriterion">
>>>22340202263
>>>
>>>-1
>>>SUBDIVISION
>>>
>>> 
>>> 
>>> 
>>>ADD
>>> https://adwords.google.com/api/adwords/cm/v201506"; 
>>> xsi:type="ns5:NegativeAdGroupCriterion">
>>>22340202263
>>>
>>>UNIT
>>>-1
>>>
>>>
>>> 
>>> 
>>> 
>>> 
>>>
>>> and *sporadically* get back
>>>
>>> 
>>> 
>>>soap:Server
>>> 
>>> [AdGroupCriterionError.PRODUCT_PARTITION_ALREADY_EXISTS @ 
>>> operations[2].operand.criterion, 
>>> AdGroupCriterionError.PRODUCT_PARTITION_DOES_NOT_EXIST @ 
>>> operations[3].operand.criterion.parentCriterionId; 
>>> trigger:'TempCriterionId{id=1}']
>>> 
>>>https://adwords.google.com/api/adwords/cm/v201506";>
>>> 
>>> [AdGroupCriterionError.PRODUCT_PARTITION_ALREADY_EXISTS @ 
>>> operations[2].operand.criterion, 
>>> AdGroupCriterionError.PRODUCT_PARTITION_DOES_NOT_EXIST @ 
>>> operations[3].operand.criterion.parentCriterionId; 
>>> trigger:'TempCriterionId{id=1}']
>>>   
>>>  ApiException
>>>http://www.w3.org/2

Re: Suspicious behaviour of BatchJob service when AdGroup was removed

2015-11-02 Thread Michael Cloonan (AdWords API Team)
Hello,

Would you mind providing the ID of one such batch job where this occurred, 
as well as the ID of the ad group you were attempting to mutate which 
exhibited this behavior? I'll pass those along to the engineering team so 
they can take a look.

Regards,
Mike, AdWords API Team

On Friday, October 30, 2015 at 11:24:11 AM UTC-4, Mariusz wrote:
>
> Hi all,
>
> I noticed rather suspicious behaviour of BatchJob service when it comes 
> to operations on removed AdGroups. The case scenario is updating 
> BiddableAdGroupCriterion with new CpcBid for a keyword in removed 
> AdGroup. I would expect service to return MutateResult with 
> OperationAccessDenied error in errorList - behaviour similar to other 
> services. What I am getting instead is an MutateResult with no errors and 
> result set to AdGroupCriterion (instead of 1BiddableAdGroupCriterion`!) 
> which is not populated with any values.
>
> Does anyone else noticed same behaviour?
> I hope this is not an expected behaviour but rather a bug. Returning 
> OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_REMOVED_ENTITY would be 
> much better and more consistent with other services.
>
> Regards,
>
> Mariusz
> ​
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/75ae14fa-69d2-484b-9fa3-8a6bd79a029c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: API data problem

2015-11-02 Thread Anthony Madrigal
Hi Cynthia,

Could you please provide more details to what percentage data you are 
missing, such as campaign IDs or screenshots? Please do so with *reply 
privately to author.*

Thanks,
Anthony
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/264f18ca-0ece-4438-85bd-443aeff76fa8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.