contentBidTypeCriterionGroup doesn't mutate

2016-06-01 Thread Ершов Александр
Hello!

I need to turn on custom bids for placements.

I'm trying to mutate Adgroup. setting contentBidTypeCriterionGroup to 
'PLACEMENT'
as it is recommended here
https://groups.google.com/forum/#!topic/adwords-api/W1Kl2fmKbqI

Here is my code

$adGroupId = '...adgroup code...';
$adGroupService = $user->GetService('AdGroupService', ADWORDS_VERSION);

$operations = array();

$adGroup = new AdGroup();
$adGroup->id = $adGroupId;

$adGroup->contentBidTypeCriterionGroup = 'PLACEMENT';
$operation = new AdGroupOperation();
$operation->operand = $adGroup;
$operation->operator = 'SET';
$operations[] = $operation;
$result = $adGroupService->mutate($operations);

And when i run this code, param doesn't change.
It simply doesn't send this change in SOAP request.

API v201603

What am I doing wrong?


http://schemas.xmlsoap.org/soap/envelope/;>
  
https://adwords.google.com/api/adwords/cm/v201603;>
  
  AdGroupService
  mutate
  1
  70

  
  
https://adwords.google.com/api/adwords/cm/v201603;>
  
AdGroupReturnValue

  30649754764
  603388708
  Russia - CPM Test v1.10
  hotweb.bid 200x200
  ENABLED
  http://www.w3.org/2001/XMLSchema-instance; 
xsi:type="TargetingSetting">
TargetingSetting

  PLACEMENT
  true

  
  
MANUAL_CPM
CAMPAIGN
http://www.w3.org/2001/XMLSchema-instance; 
xsi:type="ManualCpmBiddingScheme">
  
ManualCpmBiddingScheme

http://www.w3.org/2001/XMLSchema-instance; 
xsi:type="CpcBid">
  CpcBid
  
Money
1
  
  ADGROUP

http://www.w3.org/2001/XMLSchema-instance; 
xsi:type="CpmBid">
  CpmBid
  
Money
1500
  
  ADGROUP

  

  

  


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/36a9721c-91c0-49aa-8267-fa7e0d525d5a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Enable custom bids using API

2016-06-01 Thread Ершов Александр
Everyone who reads this - please pay attention.
Don't just copy as I did it, use param name 
contentBidCriterionTypeGroup (it is the correct once)


And contentBidTypeCriterionGroup contains mistake (Type and Criterion words 
are in the wrong order)

And really it should be used as

On Wednesday, November 6, 2013 at 1:35:55 PM UTC+3, Takeshi Hagikura 
(AdWords API Team) wrote:
>
> Hi,
>
> You can enable custom bids by setting AdGroup.contentBidTypeCriterionGroup 
> 
> .
> Please try that. 
>
> Best,
> - Takeshi, AdWords API Team
>
> On Tuesday, October 29, 2013 3:51:48 AM UTC+9, Nitin Bansal wrote:
>>
>> I am facing an issue in setting custom bids in targeting settings through 
>> API.
>>
>> Information about campaign:
>> - It is a remarketing campaign.
>> - I have linked an adgroup with one of my remarketing list.
>> - Type - Display network only (All Features)
>>
>> Other details:
>> - I am using adwords python API client. [api_version = ('v201209', 
>> 'v201302')]
>>
>> - In interests & remarketings (under Display Network tab) it is showing 
>> bids which is set on AdGroup.
>> - When i click the bid to edit, it displays a pop up with message "In 
>> order to change this bid, you’ll first need to *enable custom bids* for 
>> this targeting method in this ad group."
>> - On clicking "Enable now" another pop up comes up giving option to pick 
>> previous custom bid. If i select, "use previous custom bid for Interests 
>> & remarketing" then i am getting the bid
>> which i actually want to set.
>>
>> I tried manual approach solution when i couldn't get it working from API. 
>> I am looking for a solution to this through API. And strange thing is it 
>> was working till few weeks back.
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/80ce7b3d-f991-4e09-8b37-2a5f2de18aad%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


contentBidCriterionTypeGroup - my prev question.

2016-06-01 Thread Ершов Александр
 I've found misspelling, question is not relevant now

in this answer 
,
 
AdGroup property was written (and I copied that) as
*contentBidTypeCriterionGroup.*

And really it should be used as
*contentBidCriterionTypeGroup*


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3edaa9ff-56cf-47da-8296-0845b0d1725a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Are there any way to use Shared Library call extension?

2017-01-16 Thread Ершов Александр
Hello!

Are there any way to use Shared Library call extension?

Best regards,
Alexander

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/634782a6-a806-45d1-a3fb-ff584cc98bac%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to set "Bid only" for remarketing User lists for adgroup?

2016-12-29 Thread Ершов Александр
Hello!

How to set "Bid only" for remarketing User lists for adgroup?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5a8053a1-fc75-435d-bdc4-29a878314387%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to set "Bid only" for remarketing User lists for adgroup?

2016-12-29 Thread Ершов Александр

Yep, it works.

Dear admins, you can delete this question:)


On Friday, December 30, 2016 at 8:06:29 AM UTC+3, Ершов Александр wrote:
>
> Sorry, searched with wrong query and got 0 results.
>
> Now trying from this
>
> https://groups.google.com/forum/#!searchin/adwords-api/bid$20only$20remarketing|sort:relevance/adwords-api/4WJxIL7A9zc/J8h9TxeFBgAJ
>
> If it works out, question can be deleted
>
> On Friday, December 30, 2016 at 8:03:07 AM UTC+3, Ершов Александр wrote:
>>
>> Hello!
>>
>> How to set "Bid only" for remarketing User lists for adgroup?
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5aafbc07-42b7-46d8-8b91-03ef91185ab8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to set "Bid only" for remarketing User lists for adgroup?

2016-12-29 Thread Ершов Александр
Sorry, searched with wrong query and got 0 results.

Now trying from this
https://groups.google.com/forum/#!searchin/adwords-api/bid$20only$20remarketing|sort:relevance/adwords-api/4WJxIL7A9zc/J8h9TxeFBgAJ

If it works out, question can be deleted

On Friday, December 30, 2016 at 8:03:07 AM UTC+3, Ершов Александр wrote:
>
> Hello!
>
> How to set "Bid only" for remarketing User lists for adgroup?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/720a09da-6b4e-4816-bd79-d01a611e8490%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: BatchJob working very slow

2017-07-26 Thread Ершов Александр
And the second question is how to avoid such situations, how to prevent 
being stuck/superslow in processing BatchJob

On Thursday, July 27, 2017 at 2:14:25 AM UTC+3, Ершов Александр wrote:
>
> Hello!
>
> Today, one of our batch jobs is processed very slowly (>15 mins).
>
> Could you please and take a look, why it's so?
> My ideas
>
>1. We sent some slow operations?
>2. Wrong operation sequence / structure
>3. Adwords API inner loading balance mechanizm slow down at some 
>points, if you exceed some limits / it's high load time 
>
> Very slow, microstep progress.
>
> 
> http://schemas.xmlsoap.org/soap/envelope/;>
>   
> https://adwords.google.com/api/adwords/cm/v201609;>
>   00055540911d69480a019b1a040ddd60
>   BatchJobService
>   get
>   1
>   83
> 
>   
>   
> https://adwords.google.com/api/adwords/cm/v201609
> ">
>   
> 1
> BatchJobPage
> 
>   535930984
>   ACTIVE
>   
> 8771
> 8771
> 67
> 0
>   
> 
>   
> 
>   
> 
>
>
> Best regards,
> Alexander
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0d4299b1-02e0-4244-8e81-2b2d101842ff%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


BatchJob working very slow

2017-07-26 Thread Ершов Александр
Hello!

Today, one of our batch jobs is processed very slowly (>15 mins).

Could you please and take a look, why it's so?
My ideas

   1. We sent some slow operations?
   2. Wrong operation sequence / structure
   3. Adwords API inner loading balance mechanizm slow down at some points, 
   if you exceed some limits / it's high load time 

Very slow, microstep progress.


http://schemas.xmlsoap.org/soap/envelope/;>
  
https://adwords.google.com/api/adwords/cm/v201609;>
  00055540911d69480a019b1a040ddd60
  BatchJobService
  get
  1
  83

  
  
https://adwords.google.com/api/adwords/cm/v201609;>
  
1
BatchJobPage

  535930984
  ACTIVE
  
8771
8771
67
0
  

  

  



Best regards,
Alexander

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/727b1de8-56c1-4718-856a-01ba21c948f4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: I send 15 ETA in request, receive in response only 14 without any errors

2017-05-17 Thread Ершов Александр
Hello, Peter!

Sent it to you

Thanks!

On Wednesday, May 17, 2017 at 8:18:22 AM UTC+3, Peter Oliquino wrote:
>
> Hi Alexander,
>
> Could you send to me your clientCustomerId and the batchjob ID when you 
> encountered this error so I can further investigate? Please reply using 
> *Reply 
> privately to author*.
>
> Thanks and regards,
> Peter
> 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0a2cffce-5d9e-4711-a014-083058db8eba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: I send 15 ETA in request, receive in response only 14 without any errors

2017-05-16 Thread Ершов Александр
  ),
>   )),
>'status' => NULL,
>'approvalStatus' => NULL,
>'trademarks' => NULL,
>'disapprovalReasons' => NULL,
>'trademarkDisapproved' => NULL,
>'labels' => NULL,
>'baseCampaignId' => NULL,
>'baseAdGroupId' => NULL,
>'forwardCompatibilityMap' => NULL,
> )),
>  'exemptionRequests' => NULL,
>  'operator' => 'ADD',
>  'OperationType' => NULL,
>  '_parameterMap' =>
>array (
>   'Operation.Type' => 'OperationType',
> ),
>   )),





Part of source XML sent to BatchJobService

> http://www.w3.org/2001/XMLSchema-instance; 
> xsi:type="ns1:CampaignExtensionSettingOperation">
> 
> -2
> 
> SITELINK
> 
> 
> 
> Address
> 
> Pisgah National Forest 349 Andante Ln
> 
> Brevard NC 28712
> 
> 
> http://brevardmusiccenter.ticketoffices.com/?address
> 
> 
> 
> 
> Brevard Music Center
> 
> About Brevard Music Center Brevard
> 
> Venue, Events, and Concerts
> 
> 
> http://brevardmusiccenter.ticketoffices.com/?venue
> 
> 
> 
> 
> Upcoming Events
> 
> 2017 Upcoming Events
> 
> At Brevard Music Center Brevard
> 
> 
> http://brevardmusiccenter.ticketoffices.com/?upcomingevents
> 
> 
> 
> 
> Discount Tickets
> 
> Buy Tickets Online
> 
> And Save Up To 15%
> 
> 
> http://brevardmusiccenter.ticketoffices.com/?discounttickets
> 
> 
> 
> 
> 
> ADD
> 
> 
> http://www.w3.org/2001/XMLSchema-instance; 
> xsi:type="ns1:CampaignExtensionSettingOperation">
> 
> -2
> 
> CALL
> 
> 
> 
> 3260545913
> 
> 
> 
> 
> ADD
> 
> 
> http://www.w3.org/2001/XMLSchema-instance; 
> xsi:type="ns1:AdGroupAdOperation">
> 
> -3
> 
> 
> {KeyWord:2017 Lee Ann Womack Tickets}
> 
> (Tickets On Sale Now).
> 
> Lee Ann Womack Resale Tickets At Brevard Music Center In 
> Brevard, NC.
> 
> Tickets
> 
> LeeAnnWomack
> 
> http://brevardmusiccenter.ticketoffices.com/Lee+Ann+Womack
> 
> 
> 
> ADD
> 
> 
> http://www.w3.org/2001/XMLSchema-instance; 
> xsi:type="ns1:AdGroupAdOperation">
> 
> -3
> 
> 
> {KeyWord:2017 Lee Ann Womack Tickets}
> 
> (Tickets Up To 15% Off).
> 
> Lowest Prices On Lee Ann Womack Resale Tickets At Brevard 
> Music Center.
> 
> Tickets
> 
> LeeAnnWomack
> 
> http://brevardmusiccenter.ticketoffices.com/Lee+Ann+Womack
> 
> 
> 
> ADD
> 
> 


Part of the response

>
> -
> -
> - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;>
>
> operations[134].operand.extensionSetting.extensions[0].sitelinkLine2
> 
> StringLengthError.TOO_LONG
> StringLengthError
> TOO_LONG
> 
> 
> 134
> 
> -
> -
> -
> 44010543553
> - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;>
> 195003438662
>
> http://brevardmusiccenter.ticketoffices.com/Lee+Ann+Womack
> EXPANDED_TEXT_AD
> ExpandedTextAd
> {KeyWord:2017 Lee Ann Womack Tickets}
> (Tickets Up To 15% Off).
> Lowest Prices On Lee Ann Womack Resale Tickets At Brevard 
> Music Center.
> Tickets
> LeeAnnWomack
> 
> ENABLED
> UNCHECKED
> 
> 
> 135
> 




On Wednesday, May 17, 2017 at 2:40:35 AM UTC+3, Ершов Александр wrote:
>
> Hello!
>
> I send to BatchJobService (great tool, btw) 15 Expanded text Ads + one 
> sitelink operation before them.
> In response I got only 14 ads. And an error for sitelinks.
> No sign of missing 15th ETA ad.
>
> Can I share to you my XML / BatchJob result so that you can check what I 
> am doing wrong and how can I avoid such situations?
>
> Best regards, 
> Alexander
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/15227c6f-aa4b-4207-b4a2-898ed4fc466b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


I send 15 ETA in request, receive in response only 14 without any errors

2017-05-16 Thread Ершов Александр
Hello!

I send to BatchJobService (great tool, btw) 15 Expanded text Ads + one 
sitelink operation before them.
In response I got only 14 ads. And an error for sitelinks.
No sign of missing 15th ETA ad.

Can I share to you my XML / BatchJob result so that you can check what I am 
doing wrong and how can I avoid such situations?

Best regards, 
Alexander

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/805f5b5c-5045-461c-92ff-6cd65239b169%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


BatchJobOperation running takes more time than usual

2017-08-23 Thread Ершов Александр
Hello!

Could you please take a lot at BatchJob 551494067 
It was running today (and is still running) for more than two hours.

We run about 10-20 (sometimes 100) such BatchJobs per day in 5-10-30 
minutes interval. They couldn't be grouped into bigger one, because 
operations for them are being formed between pushes to Adwords API, and 
those pushes should be done during all the time (not once a day).
And it usually takes 5-10 minutes max to get finishing resulting XMl.

This BatchJob in progressStats shows that all operations succeeded, but 
it's very slow.

Best regards,
Alexander

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/563cd729-3a4f-4d76-b6f0-c803d2a6a737%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: BatchJobOperation running takes more time than usual

2017-08-23 Thread Ершов Александр
Another job is stuck
BatchJobID = 551569568 

10 mins, only 1 percent

On Thursday, August 24, 2017 at 12:27:52 AM UTC+3, Ершов Александр wrote:
>
> Hello!
>
> Could you please take a lot at BatchJob 551494067 
> It was running today (and is still running) for more than two hours.
>
> We run about 10-20 (sometimes 100) such BatchJobs per day in 5-10-30 
> minutes interval. They couldn't be grouped into bigger one, because 
> operations for them are being formed between pushes to Adwords API, and 
> those pushes should be done during all the time (not once a day).
> And it usually takes 5-10 minutes max to get finishing resulting XMl.
>
> This BatchJob in progressStats shows that all operations succeeded, but 
> it's very slow.
>
> Best regards,
> Alexander
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1d66c40e-d5df-4522-87cd-6ddb7a4bbeed%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: BatchJobOperation running takes more time than usual

2017-08-23 Thread Ершов Александр
Also, some case from another account

1.Today ran - 1000 operations, 1.5 hours+


Uploaded 1056 operations for batch job with ID 551577637.
from  2017-08-23 13:06:45
till   2017-08-23 14:47:52

2. Yesterday ran - 2500+ operations, 22 minutes

Uploaded 2562 operations for batch job with ID 550963633.
from  2017-08-22 13:05:36
till   2017-08-22 13:27:49

On Thursday, August 24, 2017 at 1:04:08 AM UTC+3, Ершов Александр wrote:
>
> Another job is stuck
> BatchJobID = 551569568 
>
> 10 mins, only 1 percent
>
> On Thursday, August 24, 2017 at 12:27:52 AM UTC+3, Ершов Александр wrote:
>>
>> Hello!
>>
>> Could you please take a lot at BatchJob 551494067 
>> It was running today (and is still running) for more than two hours.
>>
>> We run about 10-20 (sometimes 100) such BatchJobs per day in 5-10-30 
>> minutes interval. They couldn't be grouped into bigger one, because 
>> operations for them are being formed between pushes to Adwords API, and 
>> those pushes should be done during all the time (not once a day).
>> And it usually takes 5-10 minutes max to get finishing resulting XMl.
>>
>> This BatchJob in progressStats shows that all operations succeeded, but 
>> it's very slow.
>>
>> Best regards,
>> Alexander
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/bac9a0ef-3e12-4d5e-ba50-cc05dc69c8e3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: BatchJobOperation running takes more time than usual

2017-08-23 Thread Ершов Александр
Hello, Peter.

Sent you some information to check.

On Thursday, August 24, 2017 at 6:43:51 AM UTC+3, Peter Oliquino wrote:
>
> Hi,
>
> Could you confirm if you are still encountering the issue of slow uploads 
> using the BatchJobService? If yes, could you also include any other batch 
> job IDs where the issue was encountered and the clientCustomerId you used 
> as well? You may reply using *Reply privately to author*.
>
> Best regards,
> Peter
> 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/40494422-7e12-431b-ab06-3c6069130ce3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: BatchJob performance issues

2018-05-24 Thread Ершов Александр
Hello, Dhanya!

We are experiencing the same issue.

I can provide BatchJob IDs / clientCustomerIds if that helps!

Let me know if that helps!

Best wishes,
Ershov Alexander

On Thursday, May 24, 2018 at 5:58:05 PM UTC+3, Dhanya Sundararaju (AdWords 
API Team) wrote:
>
> Hi Thorsten,
>
> Thank you for sharing the details. At this point, there is no update on 
> the issue but we are actively working on it. I will keep you posted.
>
> Regards,
> Dhanya, AdWords API Team
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/76723090-ca1a-40b3-b1f9-a11ccc26da55%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: BatchJob performance issues

2018-06-29 Thread Ершов Александр
Hello, Milind Sankeshware!

We're pushing every day. Since that we haven't experiencing it very much.
I will reach to you if we see this issue coming up again.

Thank you very much for you work!

On Friday, June 29, 2018 at 6:48:31 PM UTC+3, Milind Sankeshware (AdWords 
API Team) wrote:
>
> Hi,
>
> I am Dhanya's colleague and will be following up on this thread as she is 
> unavailable today. We have an update from our team, there was an issue 
> which is currently resolved. Could you please try your batch job request 
> again and let me know if you are facing issues?
>
> Thanks,
> Milind, AdWords API Team.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b011018a-5b58-4f4f-9b25-34edbd144b03%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Many CANCELED for Batch jobs today

2018-04-06 Thread Ершов Александр
Hello, Peter!

I appreciate you responding!

I sent to you privately some batch jobs privately.

Thank you in advance!

On Friday, April 6, 2018 at 8:49:39 AM UTC+3, Peter Oliquino wrote:
>
> Hi,
>
> Could you also provide your clientCustomerId and if possible, the other 
> batch job IDs as well so I can better look into this issue? You may reply 
> using the *Reply privately to author* option.
>
> Best regards,
> Peter
> 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4fc4cac1-19a0-464b-98fa-8ca64990994a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Many CANCELED for Batch jobs today

2018-04-05 Thread Ершов Александр
Hello!

We have received a number of CANCELED errors today.
Batch job ID 707432799 has status 'CANCELED'.

Processing error [0]: errorType=BatchJobProcessingError, trigger=, 
errorString=BatchJobProcessingError.INTERNAL_ERROR,fieldPath=, 
reason=INTERNAL_ERROR

array(1) {
 [0]=>
 object(Google\AdsApi\AdWords\v201802\cm\BatchJobProcessingError)#49352 (7) 
{
   ["reason":protected]=>
   string(14) "INTERNAL_ERROR"
   ["fieldPath":protected]=>
   string(0) ""
   ["fieldPathElements":protected]=>
   NULL
   ["trigger":protected]=>
   string(0) ""
   ["errorString":protected]=>
   string(38) "BatchJobProcessingError.INTERNAL_ERROR"
   ["ApiErrorType":protected]=>
   string(23) "BatchJobProcessingError"
   ["parameterMap":"Google\AdsApi\AdWords\v201802\cm\ApiError":private]=>
   array(1) {
 ["ApiError.Type"]=>
 string(12) "ApiErrorType"
   }
 }
}

 [18:38:18 05.04.2018] - [ADWORDS PUSHER]run 2840 operations
[18:38:20 05.04.2018] - [ADWORDS PUSHER]Uploaded 2840. operations for batch 
job with ID: 707158643
[18:38:20 05.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
[18:38:24 05.04.2018] - [ADWORDS PUSHER]Batch job ID 707158643 has status 
ACTIVE. percents: 0
[18:38:24 05.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
[18:38:28 05.04.2018] - [ADWORDS PUSHER]Batch job ID 707158643 has status 
CANCELING. percents: 0
[18:38:28 05.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
[18:38:33 05.04.2018] - [ADWORDS PUSHER]Batch job ID 707158643 has status 
CANCELED. percents: 0
[18:38:33 05.04.2018] - [ADWORDS PUSHER]report : {"SUCCESS":0,"FAILURE":35}


Etc.

About 20 total for today.
Could you please take a look what has happened

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3c5a30d2-aac6-42ca-b4e7-b30ac4ca7c20%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Many CANCELED for Batch jobs today

2018-04-10 Thread Ершов Александр
Hello, Anash P. Oommen!

Thank you very much for response!

For sure we will report, if this errors show up again!

I highly appreciate your efforts on fixing this issue!

Thanks!

On Tuesday, April 10, 2018 at 7:00:54 PM UTC+3, Anash P. Oommen (AdWords 
API Team) wrote:
>
> Folks,
>
> We had an issue at our end that might have triggered this error. For now, 
> we rolled back the build, so errors should go away. If it continues, feel 
> free to ping this thread with specific job IDs and I'll investigate.
>
> Cheers
> Anash P. Oommen,
> AdWords API Advisor.
>
> On Tuesday, April 10, 2018 at 5:36:59 AM UTC-4, David Fishman wrote:
>>
>> Noticed this happening randomly since at least April 6. Re-submissions 
>> were successful to batch service after waiting a few hours.
>>
>> On Monday, April 9, 2018 at 2:53:20 AM UTC-7, peey rity wrote:
>>>
>>> me to, please, helping me to fix this
>>>
>>> On Thursday, April 5, 2018 at 6:44:24 PM UTC-7, Ершов Александр wrote:
>>>>
>>>> Hello!
>>>>
>>>> We have received a number of CANCELED errors today.
>>>> Batch job ID 707432799 has status 'CANCELED'.
>>>>
>>>> Processing error [0]: errorType=BatchJobProcessingError, trigger=, 
>>>> errorString=BatchJobProcessingError.INTERNAL_ERROR,fieldPath=, 
>>>> reason=INTERNAL_ERROR
>>>>
>>>> array(1) {
>>>>  [0]=>
>>>>  object(Google\AdsApi\AdWords\v201802\cm\BatchJobProcessingError)#49352 
>>>> (7) {
>>>>["reason":protected]=>
>>>>string(14) "INTERNAL_ERROR"
>>>>["fieldPath":protected]=>
>>>>string(0) ""
>>>>["fieldPathElements":protected]=>
>>>>NULL
>>>>["trigger":protected]=>
>>>>string(0) ""
>>>>["errorString":protected]=>
>>>>string(38) "BatchJobProcessingError.INTERNAL_ERROR"
>>>>["ApiErrorType":protected]=>
>>>>string(23) "BatchJobProcessingError"
>>>>   
>>>>  ["parameterMap":"Google\AdsApi\AdWords\v201802\cm\ApiError":private]=>
>>>>array(1) {
>>>>  ["ApiError.Type"]=>
>>>>  string(12) "ApiErrorType"
>>>>}
>>>>  }
>>>> }
>>>>
>>>>  [18:38:18 05.04.2018] - [ADWORDS PUSHER]run 2840 operations
>>>> [18:38:20 05.04.2018] - [ADWORDS PUSHER]Uploaded 2840. operations for 
>>>> batch job with ID: 707158643
>>>> [18:38:20 05.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>>> [18:38:24 05.04.2018] - [ADWORDS PUSHER]Batch job ID 707158643 has 
>>>> status ACTIVE. percents: 0
>>>> [18:38:24 05.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>>> [18:38:28 05.04.2018] - [ADWORDS PUSHER]Batch job ID 707158643 has 
>>>> status CANCELING. percents: 0
>>>> [18:38:28 05.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>>> [18:38:33 05.04.2018] - [ADWORDS PUSHER]Batch job ID 707158643 has 
>>>> status CANCELED. percents: 0
>>>> [18:38:33 05.04.2018] - [ADWORDS PUSHER]report : 
>>>> {"SUCCESS":0,"FAILURE":35}
>>>>
>>>>
>>>> Etc.
>>>>
>>>> About 20 total for today.
>>>> Could you please take a look what has happened
>>>>
>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2bed7cef-218c-4539-aa05-0dace285b264%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Many CANCELED for Batch jobs today

2018-04-12 Thread Ершов Александр
Hello, Anash P. Oommen!

This error has came back today
 [11:43:09 12.04.2018] - [ADWORDS PUSHER]Running handler of the adwords 
push. account: TO queue: 2018-04-12 10:32:24
 [11:43:10 12.04.2018] - [ADWORDS PUSHER]run 7241 operations
 [11:43:14 12.04.2018] - [ADWORDS PUSHER]Uploaded 7241. operations for 
batch job with ID: 713387427
 [11:43:14 12.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [11:43:18 12.04.2018] - [ADWORDS PUSHER]Batch job ID 713387427 has status 
ACTIVE. percents: 0
 [11:43:18 12.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [11:43:22 12.04.2018] - [ADWORDS PUSHER]Batch job ID 713387427 has status 
CANCELING. percents: 0
 [11:43:22 12.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [11:43:27 12.04.2018] - [ADWORDS PUSHER]Batch job ID 713387427 has status 
CANCELED. percents: 0
 [11:43:27 12.04.2018] - [ADWORDS PUSHER]report : {"SUCCESS":0,"FAILURE":29}


On Tuesday, April 10, 2018 at 7:00:54 PM UTC+3, Anash P. Oommen (AdWords 
API Team) wrote:
>
> Folks,
>
> We had an issue at our end that might have triggered this error. For now, 
> we rolled back the build, so errors should go away. If it continues, feel 
> free to ping this thread with specific job IDs and I'll investigate.
>
> Cheers
> Anash P. Oommen,
> AdWords API Advisor.
>
> On Tuesday, April 10, 2018 at 5:36:59 AM UTC-4, David Fishman wrote:
>>
>> Noticed this happening randomly since at least April 6. Re-submissions 
>> were successful to batch service after waiting a few hours.
>>
>> On Monday, April 9, 2018 at 2:53:20 AM UTC-7, peey rity wrote:
>>>
>>> me to, please, helping me to fix this
>>>
>>> On Thursday, April 5, 2018 at 6:44:24 PM UTC-7, Ершов Александр wrote:
>>>>
>>>> Hello!
>>>>
>>>> We have received a number of CANCELED errors today.
>>>> Batch job ID 707432799 has status 'CANCELED'.
>>>>
>>>> Processing error [0]: errorType=BatchJobProcessingError, trigger=, 
>>>> errorString=BatchJobProcessingError.INTERNAL_ERROR,fieldPath=, 
>>>> reason=INTERNAL_ERROR
>>>>
>>>> array(1) {
>>>>  [0]=>
>>>>  object(Google\AdsApi\AdWords\v201802\cm\BatchJobProcessingError)#49352 
>>>> (7) {
>>>>["reason":protected]=>
>>>>string(14) "INTERNAL_ERROR"
>>>>["fieldPath":protected]=>
>>>>string(0) ""
>>>>["fieldPathElements":protected]=>
>>>>NULL
>>>>["trigger":protected]=>
>>>>string(0) ""
>>>>["errorString":protected]=>
>>>>string(38) "BatchJobProcessingError.INTERNAL_ERROR"
>>>>["ApiErrorType":protected]=>
>>>>string(23) "BatchJobProcessingError"
>>>>   
>>>>  ["parameterMap":"Google\AdsApi\AdWords\v201802\cm\ApiError":private]=>
>>>>array(1) {
>>>>  ["ApiError.Type"]=>
>>>>  string(12) "ApiErrorType"
>>>>}
>>>>  }
>>>> }
>>>>
>>>>  [18:38:18 05.04.2018] - [ADWORDS PUSHER]run 2840 operations
>>>> [18:38:20 05.04.2018] - [ADWORDS PUSHER]Uploaded 2840. operations for 
>>>> batch job with ID: 707158643
>>>> [18:38:20 05.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>>> [18:38:24 05.04.2018] - [ADWORDS PUSHER]Batch job ID 707158643 has 
>>>> status ACTIVE. percents: 0
>>>> [18:38:24 05.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>>> [18:38:28 05.04.2018] - [ADWORDS PUSHER]Batch job ID 707158643 has 
>>>> status CANCELING. percents: 0
>>>> [18:38:28 05.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>>> [18:38:33 05.04.2018] - [ADWORDS PUSHER]Batch job ID 707158643 has 
>>>> status CANCELED. percents: 0
>>>> [18:38:33 05.04.2018] - [ADWORDS PUSHER]report : 
>>>> {"SUCCESS":0,"FAILURE":35}
>>>>
>>>>
>>>> Etc.
>>>>
>>>> About 20 total for today.
>>>> Could you please take a look what has happened
>>>>
>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b7257ec2-78eb-4c49-a55b-ad466332aa34%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Batch Job Issues

2018-04-09 Thread Ершов Александр
Hello!

We have the same issue
https://groups.google.com/forum/m/#!topic/adwords-api/3qRUQrgyS7I

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f88debf2-0394-48b3-aadb-2f35548dcd3c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Many CANCELED for Batch jobs today

2018-04-18 Thread Ершов Александр
Hello, Anash!

A lot of jobs failing today
 [14:00:22 18.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [14:00:27 18.04.2018] - [ADWORDS PUSHER]Batch job ID 717691209 has status 
CANCELED. percents: 0

 [13:57:48 18.04.2018] - [ADWORDS PUSHER]Batch job ID 717644287 has status 
ACTIVE. percents: 9
 [13:57:48 18.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [13:57:52 18.04.2018] - [ADWORDS PUSHER]Batch job ID 717644287 has status 
ACTIVE. percents: 9
 [13:57:52 18.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [13:57:56 18.04.2018] - [ADWORDS PUSHER]Batch job ID 717644287 has status 
ACTIVE. percents: 9
 [13:57:56 18.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [13:58:01 18.04.2018] - [ADWORDS PUSHER]Batch job ID 717644287 has status 
ACTIVE. percents: 9
 [13:58:01 18.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [13:58:07 18.04.2018] - [ADWORDS PUSHER]Batch job ID 717644287 has status 
CANCELING. percents: 9
 [13:58:07 18.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [13:58:11 18.04.2018] - [ADWORDS PUSHER]Batch job ID 717644287 has status 
CANCELED. percents: 9


On Thursday, April 12, 2018 at 10:52:23 PM UTC+3, Anash P. Oommen (AdWords 
API Team) wrote:
>
> Hi,
>
> Thanks for confirming, I'll investigate.
>
> Anash
>
> On Thursday, April 12, 2018 at 3:30:13 PM UTC-4, Ершов Александр wrote:
>>
>> Hello, Anash P. Oommen!
>>
>> This error has came back today
>>  [11:43:09 12.04.2018] - [ADWORDS PUSHER]Running handler of the adwords 
>> push. account: TO queue: 2018-04-12 10:32:24
>>  [11:43:10 12.04.2018] - [ADWORDS PUSHER]run 7241 operations
>>  [11:43:14 12.04.2018] - [ADWORDS PUSHER]Uploaded 7241. operations for 
>> batch job with ID: 713387427
>>  [11:43:14 12.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>  [11:43:18 12.04.2018] - [ADWORDS PUSHER]Batch job ID 713387427 has 
>> status ACTIVE. percents: 0
>>  [11:43:18 12.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>  [11:43:22 12.04.2018] - [ADWORDS PUSHER]Batch job ID 713387427 has 
>> status CANCELING. percents: 0
>>  [11:43:22 12.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>  [11:43:27 12.04.2018] - [ADWORDS PUSHER]Batch job ID 713387427 has 
>> status CANCELED. percents: 0
>>  [11:43:27 12.04.2018] - [ADWORDS PUSHER]report : 
>> {"SUCCESS":0,"FAILURE":29}
>>
>>
>> On Tuesday, April 10, 2018 at 7:00:54 PM UTC+3, Anash P. Oommen (AdWords 
>> API Team) wrote:
>>>
>>> Folks,
>>>
>>> We had an issue at our end that might have triggered this error. For 
>>> now, we rolled back the build, so errors should go away. If it continues, 
>>> feel free to ping this thread with specific job IDs and I'll investigate.
>>>
>>> Cheers
>>> Anash P. Oommen,
>>> AdWords API Advisor.
>>>
>>> On Tuesday, April 10, 2018 at 5:36:59 AM UTC-4, David Fishman wrote:
>>>>
>>>> Noticed this happening randomly since at least April 6. Re-submissions 
>>>> were successful to batch service after waiting a few hours.
>>>>
>>>> On Monday, April 9, 2018 at 2:53:20 AM UTC-7, peey rity wrote:
>>>>>
>>>>> me to, please, helping me to fix this
>>>>>
>>>>> On Thursday, April 5, 2018 at 6:44:24 PM UTC-7, Ершов Александр wrote:
>>>>>>
>>>>>> Hello!
>>>>>>
>>>>>> We have received a number of CANCELED errors today.
>>>>>> Batch job ID 707432799 has status 'CANCELED'.
>>>>>>
>>>>>> Processing error [0]: errorType=BatchJobProcessingError, trigger=, 
>>>>>> errorString=BatchJobProcessingError.INTERNAL_ERROR,fieldPath=, 
>>>>>> reason=INTERNAL_ERROR
>>>>>>
>>>>>> array(1) {
>>>>>>  [0]=>
>>>>>>  object(Google\AdsApi\AdWords\v201802\cm\BatchJobProcessingError)#49352 
>>>>>> (7) {
>>>>>>["reason":protected]=>
>>>>>>string(14) "INTERNAL_ERROR"
>>>>>>["fieldPath":protected]=>
>>>>>>string(0) ""
>>>>>>["fieldPathElements":protected]=>
>>>>>>NULL
>>>>>>["trigger":protected]=>
>>>>>>string(0) ""
>>>>>>["errorString":protected]=>
>>>>>>string(38) "BatchJobProcessingError.INTERNAL_ERROR"
>>>>>>["ApiErrorType":protected]=>
>>>>>>string(23)

Re: Many CANCELED for Batch jobs today

2018-04-25 Thread Ершов Александр
Hello, Anash!

Thanks! Yep, we will!

On Wednesday, April 25, 2018 at 7:56:35 PM UTC+3, Anash P. Oommen (AdWords 
API Team) wrote:
>
> Hi,
>
> The issue should be fixed at our end now. Could you continue monitoring at 
> your end to see if more tasks are failing?
>
> Cheers
> Anash P. Oommen,
> AdWords API Advisor.
>
> On Wednesday, April 18, 2018 at 5:24:45 PM UTC-4, Ершов Александр wrote:
>>
>> Hello, Anash!
>>
>> A lot of jobs failing today
>>  [14:00:22 18.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>  [14:00:27 18.04.2018] - [ADWORDS PUSHER]Batch job ID 717691209 has 
>> status CANCELED. percents: 0
>>
>>  [13:57:48 18.04.2018] - [ADWORDS PUSHER]Batch job ID 717644287 has 
>> status ACTIVE. percents: 9
>>  [13:57:48 18.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>  [13:57:52 18.04.2018] - [ADWORDS PUSHER]Batch job ID 717644287 has 
>> status ACTIVE. percents: 9
>>  [13:57:52 18.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>  [13:57:56 18.04.2018] - [ADWORDS PUSHER]Batch job ID 717644287 has 
>> status ACTIVE. percents: 9
>>  [13:57:56 18.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>  [13:58:01 18.04.2018] - [ADWORDS PUSHER]Batch job ID 717644287 has 
>> status ACTIVE. percents: 9
>>  [13:58:01 18.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>  [13:58:07 18.04.2018] - [ADWORDS PUSHER]Batch job ID 717644287 has 
>> status CANCELING. percents: 9
>>  [13:58:07 18.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>  [13:58:11 18.04.2018] - [ADWORDS PUSHER]Batch job ID 717644287 has 
>> status CANCELED. percents: 9
>>
>>
>> On Thursday, April 12, 2018 at 10:52:23 PM UTC+3, Anash P. Oommen 
>> (AdWords API Team) wrote:
>>>
>>> Hi,
>>>
>>> Thanks for confirming, I'll investigate.
>>>
>>> Anash
>>>
>>> On Thursday, April 12, 2018 at 3:30:13 PM UTC-4, Ершов Александр wrote:
>>>>
>>>> Hello, Anash P. Oommen!
>>>>
>>>> This error has came back today
>>>>  [11:43:09 12.04.2018] - [ADWORDS PUSHER]Running handler of the adwords 
>>>> push. account: TO queue: 2018-04-12 10:32:24
>>>>  [11:43:10 12.04.2018] - [ADWORDS PUSHER]run 7241 operations
>>>>  [11:43:14 12.04.2018] - [ADWORDS PUSHER]Uploaded 7241. operations for 
>>>> batch job with ID: 713387427
>>>>  [11:43:14 12.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>>>  [11:43:18 12.04.2018] - [ADWORDS PUSHER]Batch job ID 713387427 has 
>>>> status ACTIVE. percents: 0
>>>>  [11:43:18 12.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>>>  [11:43:22 12.04.2018] - [ADWORDS PUSHER]Batch job ID 713387427 has 
>>>> status CANCELING. percents: 0
>>>>  [11:43:22 12.04.2018] - [ADWORDS PUSHER]Sleeping 4 seconds...
>>>>  [11:43:27 12.04.2018] - [ADWORDS PUSHER]Batch job ID 713387427 has 
>>>> status CANCELED. percents: 0
>>>>  [11:43:27 12.04.2018] - [ADWORDS PUSHER]report : 
>>>> {"SUCCESS":0,"FAILURE":29}
>>>>
>>>>
>>>> On Tuesday, April 10, 2018 at 7:00:54 PM UTC+3, Anash P. Oommen 
>>>> (AdWords API Team) wrote:
>>>>>
>>>>> Folks,
>>>>>
>>>>> We had an issue at our end that might have triggered this error. For 
>>>>> now, we rolled back the build, so errors should go away. If it continues, 
>>>>> feel free to ping this thread with specific job IDs and I'll investigate.
>>>>>
>>>>> Cheers
>>>>> Anash P. Oommen,
>>>>> AdWords API Advisor.
>>>>>
>>>>> On Tuesday, April 10, 2018 at 5:36:59 AM UTC-4, David Fishman wrote:
>>>>>>
>>>>>> Noticed this happening randomly since at least April 6. 
>>>>>> Re-submissions were successful to batch service after waiting a few 
>>>>>> hours.
>>>>>>
>>>>>> On Monday, April 9, 2018 at 2:53:20 AM UTC-7, peey rity wrote:
>>>>>>>
>>>>>>> me to, please, helping me to fix this
>>>>>>>
>>>>>>> On Thursday, April 5, 2018 at 6:44:24 PM UTC-7, Ершов Александр 
>>>>>>> wrote:
>>>>>>>>
>>>>>>>> Hello!
>>>>>>>>
>>>>>>>> We have received a number of CANCELED errors today.
>>>>>>>> Batch job ID 707432799 has status 'CANCELED'.
>

Re: Bulk Jobs are stuck

2018-12-27 Thread Ершов Александр
Hello!

We are experiencing this issue too, since PST midnight.

Example job ids that are stuck: 
Batch job ID 948462438 has status AWAITING_FILE
Batch job ID 947941139 has status AWAITING_FILE

Best regards,
Alexander
On Thursday, December 27, 2018 at 6:51:29 PM UTC+3, Dhanya Sundararaju 
(AdWords API Team) wrote:
>
> Hi all,
>
> Thank you for sharing the Job Ids. Our team is currently looking into 
> this. I will post on this thread as soon as I have any updates.
>
> Regards,
> Dhanya, AdWords API Team
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/54972c9b-53a1-4abf-a7f6-1986b48fbe66%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Bulk Jobs are stuck

2018-12-28 Thread Ершов Александр
Hello, Dhanya!

Seems good so far!

Appreciate you and team's hard works! Thank you so much for quick reaction 
on this issue!

Best wishes,
Alexander

On Friday, December 28, 2018 at 3:34:30 PM UTC+3, Dhanya Sundararaju 
(AdWords API Team) wrote:
>
> Hi all,
>
> You should be able to see Batch Jobs back to normal now. Please let me 
> know the BatchJob Id and SOAP logs if you still see issues.
>
> Regards,
> Dhanya, AdWords API Team
>
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/568f9638-d570-4ebd-b246-33757da875fd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Two canceled BatchJobs during two days

2019-02-28 Thread Ершов Александр
Hi!

JFYI, it happens from time to time.

E.g. today
 [12:18:53 28.02.2019] - [ADWORDS PUSHER]Running handler of the adwords 
push. account: TO queue: 2019-02-28 12:18:37
 [12:18:54 28.02.2019] - [ADWORDS PUSHER]run 2447 operations
 [12:18:56 28.02.2019] - [ADWORDS PUSHER]Uploaded 2447. operations for 
batch job with ID: 1120797927
 [12:18:56 28.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [12:19:00 28.02.2019] - [ADWORDS PUSHER]Batch job ID 1120797927 has status 
ACTIVE. percents: 0
 [12:19:00 28.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [12:19:05 28.02.2019] - [ADWORDS PUSHER]Batch job ID 1120797927 has status 
ACTIVE. percents: 0
 [12:19:05 28.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [12:19:09 28.02.2019] - [ADWORDS PUSHER]Batch job ID 1120797927 has status 
ACTIVE. percents: 0
 [12:19:09 28.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [12:19:13 28.02.2019] - [ADWORDS PUSHER]Batch job ID 1120797927 has status 
ACTIVE. percents: 0
 [12:19:13 28.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [12:19:18 28.02.2019] - [ADWORDS PUSHER]Batch job ID 1120797927 has status 
ACTIVE. percents: 0
 [12:19:18 28.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [12:19:22 28.02.2019] - [ADWORDS PUSHER]Batch job ID 1120797927 has status 
ACTIVE. percents: 0
 [12:19:22 28.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [12:19:26 28.02.2019] - [ADWORDS PUSHER]Batch job ID 1120797927 has status 
ACTIVE. percents: 0
 [12:19:26 28.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [12:19:30 28.02.2019] - [ADWORDS PUSHER]Batch job ID 1120797927 has status 
ACTIVE. percents: 0
 [12:19:30 28.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [12:19:35 28.02.2019] - [ADWORDS PUSHER]Batch job ID 1120797927 has status 
ACTIVE. percents: 0
 [12:19:35 28.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [12:19:39 28.02.2019] - [ADWORDS PUSHER]Batch job ID 1120797927 has status 
ACTIVE. percents: 0
 [12:19:39 28.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [12:19:44 28.02.2019] - [ADWORDS PUSHER]Batch job ID 1120797927 has status 
ACTIVE. percents: 0
 [12:19:44 28.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [12:19:48 28.02.2019] - [ADWORDS PUSHER]Batch job ID 1120797927 has status 
ACTIVE. percents: 0
 [12:19:48 28.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [12:19:52 28.02.2019] - [ADWORDS PUSHER]Batch job ID 1120797927 has status 
ACTIVE. percents: 0
 [12:19:52 28.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [12:19:56 28.02.2019] - [ADWORDS PUSHER]Batch job ID 1120797927 has status 
ACTIVE. percents: 0
 [12:19:56 28.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [12:20:01 28.02.2019] - [ADWORDS PUSHER]Batch job ID 1120797927 has status 
ACTIVE. percents: 0
 [12:20:01 28.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [12:20:05 28.02.2019] - [ADWORDS PUSHER]Batch job ID 1120797927 has status 
CANCELING. percents: 0
 [12:20:05 28.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [12:20:09 28.02.2019] - [ADWORDS PUSHER]Batch job ID 1120797927 has status 
CANCELED. percents: 0
 [12:20:09 28.02.2019] - [ADWORDS PUSHER]report : {"SUCCESS":0,"FAILURE":0



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/bcd13abd-9cae-4911-ac1b-93198a8a33f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Issue with adding members to the existing CrmBasedUserList using Adwords API

2019-02-23 Thread Ершов Александр
Hello!

We're trying to add users to existing CrmBasedUserList (created using this 
example 

)

The code to create userList works ok, but when we're trying to add members 
to it, we are getting this error
Error: [UserListError.CONCRETE_TYPE_REQUIRED @ operations[0].operand]


In the description MutateMembersOperand we don't see the Type property to 
be set
Enter code here...


Operand containing user list id and members to be added or removed.






The id of the user list. This field is 
required and should not be {@code null}.






Set to indicate a remove-all operation which will remove all members from 
the user list. Can only be set with {@code Operator#REMOVE} and when set to 
true {@link #members} must be null or empty.






A list of members to be added or removed. If {@link #removeAll} is 
{@code true}, this list must be {@code null} or empty. Otherwise, this 
field is required and there must be at least one member. The maximum size of this collection is 
100. This field must 
not contain {@code null} elements.






Also I've checked the forum and found this 

 
response

Could you please take a look and let us know, whether
1. This option is not available in Adwords API right now
2. We need to add new members to CrmBasedList using some other technique

Thanks in advance!

Best wishes, 
Alexander

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads 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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6cc4b6d9-acb0-4484-b67b-a5b250201dfb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Two canceled BatchJobs during two days

2019-02-08 Thread Ершов Александр
Hello!

We've seen two batch jobs canceled on Adwords API side recently.

batchJob IDs
- 1051814965
- 

Logs
 [14:02:58 07.02.2019] - [ADWORDS PUSHER]Uploaded 2029. operations for 
batch job with ID: 1048178962
 [14:02:58 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [14:03:02 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has status 
ACTIVE. percents: 0
 [14:03:02 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [14:03:06 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has status 
ACTIVE. percents: 0
 [14:03:06 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [14:03:10 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has status 
ACTIVE. percents: 0
 [14:03:10 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [14:03:15 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has status 
ACTIVE. percents: 0
 [14:03:15 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [14:03:19 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has status 
ACTIVE. percents: 0
 [14:03:19 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [14:03:23 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has status 
ACTIVE. percents: 0
 [14:03:23 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [14:03:27 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has status 
ACTIVE. percents: 0
 [14:03:27 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [14:03:31 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has status 
ACTIVE. percents: 0
 [14:03:31 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [14:03:36 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has status 
ACTIVE. percents: 0
 [14:03:36 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [14:03:40 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has status 
ACTIVE. percents: 0
 [14:03:40 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [14:03:44 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has status 
ACTIVE. percents: 0
 [14:03:44 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [14:03:48 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has status 
ACTIVE. percents: 0
 [14:03:48 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [14:03:52 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has status 
ACTIVE. percents: 0
 [14:03:52 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [14:03:56 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has status 
ACTIVE. percents: 0
 [14:03:56 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [14:04:01 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has status 
ACTIVE. percents: 0
 [14:04:01 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [14:04:05 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has status 
CANCELED. percents: 0

=
 [15:38:31 08.02.2019] - [ADWORDS PUSHER]Uploaded 5355. operations for 
batch job with ID: 1051814965
 [15:38:31 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [15:38:36 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has status 
ACTIVE. percents: 0
 [15:38:36 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [15:38:40 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has status 
ACTIVE. percents: 0
 [15:38:40 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [15:38:44 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has status 
ACTIVE. percents: 0
 [15:38:44 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [15:38:48 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has status 
ACTIVE. percents: 0
 [15:38:48 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [15:38:53 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has status 
ACTIVE. percents: 0
 [15:38:53 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [15:38:57 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has status 
ACTIVE. percents: 0
 [15:38:57 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [15:39:01 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has status 
ACTIVE. percents: 0
 [15:39:01 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [15:39:05 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has status 
ACTIVE. percents: 0
 [15:39:05 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [15:39:10 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has status 
ACTIVE. percents: 0
 [15:39:10 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [15:39:14 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has status 
ACTIVE. percents: 0
 [15:39:14 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [15:39:18 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has status 
ACTIVE. percents: 0
 [15:39:18 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [15:39:22 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has status 
ACTIVE. percents: 0
 [15:39:22 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [15:39:26 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has status 
ACTIVE. percents: 0
 [15:39:26 08.02.2019] - 

Re: Two canceled BatchJobs during two days

2019-02-08 Thread Ершов Александр

Second batchJob id is 1051814965

On Saturday, February 9, 2019 at 3:26:56 AM UTC+3, Ершов Александр wrote:
>
> Hello!
>
> We've seen two batch jobs canceled on Adwords API side recently.
>
> batchJob IDs
> - 1051814965
> - 
>
> Logs
>  [14:02:58 07.02.2019] - [ADWORDS PUSHER]Uploaded 2029. operations for 
> batch job with ID: 1048178962
>  [14:02:58 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:02 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:02 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:06 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:06 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:10 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:10 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:15 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:15 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:19 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:19 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:23 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:23 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:27 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:27 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:31 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:31 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:36 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:36 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:40 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:40 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:44 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:44 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:48 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:48 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:52 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:52 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:56 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:56 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:04:01 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:04:01 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:04:05 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status CANCELED. percents: 0
>
> =
>  [15:38:31 08.02.2019] - [ADWORDS PUSHER]Uploaded 5355. operations for 
> batch job with ID: 1051814965
>  [15:38:31 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [15:38:36 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has 
> status ACTIVE. percents: 0
>  [15:38:36 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [15:38:40 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has 
> status ACTIVE. percents: 0
>  [15:38:40 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [15:38:44 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has 
> status ACTIVE. percents: 0
>  [15:38:44 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [15:38:48 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has 
> status ACTIVE. percents: 0
>  [15:38:48 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [15:38:53 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has 
> status ACTIVE. percents: 0
>  [15:38:53 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [15:38:57 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has 
> status ACTIVE. percents: 0
>  [15:38:57 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [15:39:01 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has 
> status ACTIVE. percents: 0
>  [15:39:01 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [15:39:05 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has 
> status ACTIVE. percents: 0
>  [15:39:05 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [15:39:10 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has 
> status ACTIVE. percents: 0
>  [15:39:10 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [15:39:14 08.02.2019] - [AD

Re: Two canceled BatchJobs during two days

2019-02-12 Thread Ершов Александр
Hi Josh!

Thanks! Appreciate your response!

Best regards,
Alexander!

On Monday, February 11, 2019 at 11:57:26 PM UTC+3, 
googleadsapi-forumadvisor wrote:
>
> Hi Alexander,
>
> I'm following up with the batch job engineers to get more details on the 
> internal error. I'll reply back as soon as I have an update.
>
> Cheers,
> Josh, AdWords API Team
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Hi Alexander,
>
> Thank you for providing detailed information on you issue. We will check 
> this with the team and will provide you an update as soon as available.
>
> Thanks and regards,
> Luis
> AdWords API Team
>
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
>
>
> Second batchJob id is 1051814965
>
> On Saturday, February 9, 2019 at 3:26:56 AM UTC+3, Ершов Александр wrote:
>
> Hello!
>
> We've seen two batch jobs canceled on Adwords API side recently.
>
> batchJob IDs
> - 1051814965
> - 
>
> Logs
>  [14:02:58 07.02.2019] - [ADWORDS PUSHER]Uploaded 2029. operations for 
> batch job with ID: 1048178962
>  [14:02:58 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:02 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:02 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:06 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:06 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:10 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:10 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:15 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:15 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:19 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:19 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:23 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:23 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:27 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:27 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:31 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:31 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:36 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:36 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:40 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:40 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:44 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:44 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:48 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:48 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:52 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:52 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:03:56 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:03:56 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:04:01 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status ACTIVE. percents: 0
>  [14:04:01 07.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [14:04:05 07.02.2019] - [ADWORDS PUSHER]Batch job ID 1048178962 has 
> status CANCELED. percents: 0
>
> =
>  [15:38:31 08.02.2019] - [ADWORDS PUSHER]Uploaded 5355. operations for 
> batch job with ID: 1051814965
>  [15:38:31 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [15:38:36 08.02.2019] - [ADWORDS PUSHER]Batch job ID 1051814965 has 
> status ACTIVE. percents: 0
>  [15:38:36 08.02.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...

Re: API Error: unexpected_internal_api_error

2019-06-23 Thread Ершов Александр
We are experiencing increase in these errors across multiply accounts 
during last 2-3 days

Basically happens when we are pulling campaigns / adgroups from Adwords 
accounts to our local databases.

30+ occurencies during last 24 hours

Google\AdsApi\AdWords\vDefault\cm\ApiException: 
[InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ 
com.google.ads.api.services.common.error.InternalApiError.(InternalApiErro]
 


Could you please take a look?

On Friday, June 21, 2019 at 8:33:33 AM UTC+3, adsapiforumadvisor wrote:
>
> Hi Charles,
>
> Thanks for raising your concern.
>
> The usual reason for encountering the *UNEXPECTED_INTERNAL_API_ERROR *is 
> due to transient issue. But to take a closer to the issue, would mind 
> providing the complete SOAP request and response logs together with the 
> *requestId* and the *customer ID *via *Reply privately to author* 
> option? Please check the README section 
>  of the 
> respective client library for guidance on how to enable SOAP logging.
>
> Regards,
> Ejay
> Google Ads API Team
>
> ref:_00D1U1174p._5001UCYgrH:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/df9f6171-5bc1-4e8f-b49e-f291efce761a%40googlegroups.com.


Re: API Returns "Internal Error" Message

2019-06-23 Thread Ершов Александр
We are experiencing increase in these errors across multiply accounts 
during last 2-3 days

Basically happens when we are pulling campaigns / adgroups from Adwords 
accounts to our local databases.

30+ occurencies during last 24 hours

Google\AdsApi\AdWords\vDefault\cm\ApiException: 
[InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ 
com.google.ads.api.services.common.error.InternalApiError.(InternalApiErro]
 


Could you please take a look?


On Tuesday, June 18, 2019 at 4:48:35 PM UTC+3, Kiyoko Hall wrote:
>
> Hi all,
>
> I use the PHP client library and just got set up to use the Google Ads 
> API. I got to the "First Call: Get Campaigns" steps in the Google Ads API 
> documentation 
> , 
> but when I make the call on the command line, I get the following output.
>
> PHP Notice:  Undefined index: warning in /opt/bitnami/apache2/htdocs/core/
> libraries/google-ads-php/src/Google/Ads
> /GoogleAds/Lib/V1/GoogleAdsUnaryCallLogger.php on line 129
> ApiException was thrown with message '{
> "message": "Internal error encountered.",
> "code": 13,
> "status": "INTERNAL",
> "details": []
> }'.
>
>
>
> I have tried this several times over the past 24 hours, and always receive 
> the same result, so I believe it to be an issue on my end as opposed to the 
> API. I setup the PHP client library by following the below instructions, so 
> I'm not sure why I am receiving the undefined index warning and whether or 
> not that is related to my API call failing: 
>
> https://github.com/googleads/google-ads-php/blob/master/README.md#getting-started
>
> Please let me know what could be causing this issue. 
>
> Thanks
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8a8f4ff8-1baa-412b-9264-773ea1f565c8%40googlegroups.com.


Multiply BatchJobs keep failing with CANCELED / INTERNAL_API_ERROR

2019-07-14 Thread Ершов Александр
Hello, Adwords API team

During last hour had 3 different jobs that have been canceled after 
creating one adgroup (doing only half of operations for it) and skipping 
other 20 adgroups.

Could you please take a look?

Batch Job IDS:
1661177973
1661784059

*1661104767*1661183971

Returned error:
Batch job ID 1661177973 has status CANCELED. percents: 4

Processing error [0]: errorType=BatchJobProcessingError, trigger=, 
errorString=BatchJobProcessingError.INTERNAL_ERROR,fieldPath=, reason=
INTERNAL_ERROR



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8b2e15dd-efaa-4d75-b801-bda4d4ba1871%40googlegroups.com.


Re: Multiply BatchJobs keep failing with CANCELED / INTERNAL_API_ERROR

2019-07-14 Thread Ершов Александр
It keeps failing for one account. With another set of operations.

For our second account pushing works ok.

 [15:54:55 14.07.2019] - [ADWORDS PUSHER]run 2844 operations

...
 [15:55:56 14.07.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [15:56:00 14.07.2019] - [ADWORDS PUSHER]Batch job ID 1661292354 has status 
ACTIVE. percents: 0
 [15:56:00 14.07.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [15:56:04 14.07.2019] - [ADWORDS PUSHER]Batch job ID 1661292354 has status 
CANCELING. percents: 0
 [15:56:04 14.07.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
 [15:56:09 14.07.2019] - [ADWORDS PUSHER]Batch job ID 1661292354 has status 
CANCELED. percents: 0
 [15:56:09 14.07.2019] - [ADWORDS PUSHER]report : {"SUCCESS":34,"FAILURE":0}



On Monday, July 15, 2019 at 1:26:41 AM UTC+3, Ершов Александр wrote:
>
> Hello, Adwords API team
>
> During last hour had 3 different jobs that have been canceled after 
> creating one adgroup (doing only half of operations for it) and skipping 
> other 20 adgroups.
>
> Could you please take a look?
>
> Batch Job IDS:
> 1661177973
> 1661784059
>
> *1661104767*1661183971
>
> Returned error:
> Batch job ID 1661177973 has status CANCELED. percents: 4
>
> Processing error [0]: errorType=BatchJobProcessingError, trigger=, 
> errorString=BatchJobProcessingError.INTERNAL_ERROR,fieldPath=, reason=
> INTERNAL_ERROR
>
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/30baafff-e6cf-41a8-944e-dd27a5e6ff3c%40googlegroups.com.


Re: Multiply BatchJobs keep failing with CANCELED / INTERNAL_API_ERROR

2019-07-14 Thread Ершов Александр
Started working.

Thanks!



On Monday, July 15, 2019 at 1:59:34 AM UTC+3, Ершов Александр wrote:
>
> It keeps failing for one account. With another set of operations.
>
> For our second account pushing works ok.
>
>  [15:54:55 14.07.2019] - [ADWORDS PUSHER]run 2844 operations
>
> ...
>  [15:55:56 14.07.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [15:56:00 14.07.2019] - [ADWORDS PUSHER]Batch job ID 1661292354 has 
> status ACTIVE. percents: 0
>  [15:56:00 14.07.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [15:56:04 14.07.2019] - [ADWORDS PUSHER]Batch job ID 1661292354 has 
> status CANCELING. percents: 0
>  [15:56:04 14.07.2019] - [ADWORDS PUSHER]Sleeping 4 seconds...
>  [15:56:09 14.07.2019] - [ADWORDS PUSHER]Batch job ID 1661292354 has 
> status CANCELED. percents: 0
>  [15:56:09 14.07.2019] - [ADWORDS PUSHER]report : {"SUCCESS":34,"FAILURE":
> 0}
>
>
>
> On Monday, July 15, 2019 at 1:26:41 AM UTC+3, Ершов Александр wrote:
>>
>> Hello, Adwords API team
>>
>> During last hour had 3 different jobs that have been canceled after 
>> creating one adgroup (doing only half of operations for it) and skipping 
>> other 20 adgroups.
>>
>> Could you please take a look?
>>
>> Batch Job IDS:
>> 1661177973
>> 1661784059
>>
>> *1661104767*1661183971
>>
>> Returned error:
>> Batch job ID 1661177973 has status CANCELED. percents: 4
>>
>> Processing error [0]: errorType=BatchJobProcessingError, trigger=, 
>> errorString=BatchJobProcessingError.INTERNAL_ERROR,fieldPath=, reason=
>> INTERNAL_ERROR
>>
>>
>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/15082766-278c-4337-b062-45ba592cca73%40googlegroups.com.


How to create seasonality adjustment using Google Ads API?

2019-08-27 Thread Ершов Александр
Hello!

Could you please explain how I can create seasonality adjustment using 
Google Ads API?

Also btw, couldn't find Adwords API sunset date? When will it be known (I 
read that it's going to be somewhere in 2020, but when? Q1 / Q2 / Q3 / Q4?)

Best wishes, 
Alexander

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/152915c9-68ee-4eb4-9d78-2413c634564f%40googlegroups.com.


Re: How to create seasonality adjustment using Google Ads API?

2019-08-28 Thread Ершов Александр
Got it!

Thank you very much!

On Wednesday, August 28, 2019 at 6:37:29 PM UTC+3, adsapiforumadvisor wrote:
>
> Hello, 
>
> The Seasonality adjustments are not yet supported through the API. I have 
> your interest with the team. Regarding your concern, neither the 
> deprecation nor the sunset date has been set yet for AdWords API. Once the 
> Google Ads API exits “beta”, we will announce the deprecation date and the 
> sunset date will be at least 1 year after Google Ads API reaches feature 
> parity with AdWords API. Please continue to monitor our blog 
>  for 
> more updates.
>
> Thanks,
> Bharani, Google Ads API Team
>
> ref:_00D1U1174p._5001UHEtMM:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/20e11da3-907a-4ed7-a77c-e51d5bc83fe9%40googlegroups.com.


How could I get with the Adwords API to get all the keywords from enabled adgroups in enabled campaigns only?

2019-09-12 Thread Ершов Александр
Hello!

We're trying to get total number of keywords in the Adwords API in 
enabled/paused adgroups in enabled/paused campaigns.
We could do it with the Google Ads UI, but couldn't figure out it for API.

As far as I can tell, 
https://developers.google.com/adwords/api/docs/reference/v201809/AdGroupCriterionService
 doesn't 
allow to pass Status field for Campaign / Adgroup status linked to the 
keyword

Thank you!

Best wishes,
Alexander

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e1a48ca6-a462-4eca-bff5-aaf33fc322f3%40googlegroups.com.


RE: How could I get with the Adwords API to get all the keywords from enabled adgroups in enabled campaigns only?

2019-09-12 Thread Ершов Александр
Hello!
Thank you for your response.

We need to monitor whether we're getting close to hitting the ENTITY_LIMIT by 
keywords. That's our goal

So unfortunately, using report doesn't work for us

Do you know any other way to check whether we're close to hitting 5 mln keyword 
limit or not?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1fc4cf3e-4a55-4b21-9b39-cf6e4d2df875%40googlegroups.com.


Re: How could I get with the Adwords API to get all the keywords from enabled adgroups in enabled campaigns only?

2019-09-12 Thread Ершов Александр

Hello, Bharani!

The reason is that we need this number to be as relevant as possible.
As I understand, the report will only show performing keywords, and will 
have some lag in updating.

We actually found a temporarily way to do it - we query the adgroupIds,
and then in a loop we get keywords count for those adgroupIds. That's not 
the ideal solution, but it does work.

On Thursday, September 12, 2019 at 11:58:22 PM UTC+3, adsapiforumadvisor 
wrote:
>
> Hi, 
>
> Through the API services, it is not possible to pull the data based on 
> status. Since you're close to hitting the limits, pulling the reports would 
> be the best option for large data sets. You will be able to pull the data 
> about keywords available in the account. Is there any specific reason you 
> don't want to use reports? This will help us point you in the right 
> direction. 
>
> Thanks,
> Bharani, Google Ads API Team
>
> ref:_00D1U1174p._5001UHGYUl:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/bc76d6a7-2ec9-4fa0-bea0-5319acaddeeb%40googlegroups.com.


Re: Issues with calculating conv.value / cost for mobile devices

2020-08-19 Thread Ершов Александр
Done

Sent you the data

Thank you!

On Wednesday, August 19, 2020 at 11:56:38 PM UTC+3, adsapiforumadvisor 
wrote:
>
> Hello,
>
> Can you please *reply privately to author *your CID, report query and 
> report results so I can further troubleshoot?
>
> Thanks,
> Anthony
> Google Ads API Team
>
> ref:_00D1U1174p._5004Q23t8yd:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d0d5a50c-7c0a-4f8c-a881-85437b5f7103o%40googlegroups.com.


Re: Issues with calculating conv.value / cost for mobile devices

2020-08-24 Thread Ершов Александр
Update:
Contacted the Google Adwords API team and UI team.
Everyone answered in details, and we figured out what's taking place.

The solution is the following. 
You need to subtract the cost for mobile calls.

1. First, obtain it, from the Account Performance Report, filtering by
- only mobile devices
- ClickType: CALLS

2. Then, for mobile, you need to use this formula
"Manual Conv.value / cost" = ConversionValue / (Cost - Cost_for_calls)

And then the UI value will match the manually calculated ROAS ("conv.value 
/ cost")

Thanks again!


On Thursday, August 20, 2020 at 12:20:40 AM UTC+3 Ершов Александр wrote:

> Done
>
> Sent you the data
>
> Thank you!
>
>
> On Wednesday, August 19, 2020 at 11:56:38 PM UTC+3, adsapiforumadvisor 
> wrote:
>>
>> Hello,
>>
>> Can you please *reply privately to author *your CID, report query and 
>> report results so I can further troubleshoot?
>>
>> Thanks,
>> Anthony
>> Google Ads API Team
>>
>> ref:_00D1U1174p._5004Q23t8yd:ref
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e93cc14f-1a6e-460c-9fc5-fed40bac3887n%40googlegroups.com.


Re: Issues with calculating conv.value / cost for mobile devices

2020-08-24 Thread Ершов Александр
Update:
Contacted the Google Adwords API team and UI team.
Everyone answered in details, and we figured out what's taking place.

in the UI, they subtract the cost for mobile calls. You could obtain it 
from the Account Performance Report, filtering by
- only mobile devices
- ClickType: CALLS

Then, for mobile, you need to use this formula
ConversionValue / (Cost - Cost_for_calls)

And then the UI value will match the manually calculated ROAS ("conv.value 
/ cost")

Thanks again!

On Thursday, August 20, 2020 at 12:20:40 AM UTC+3 Ершов Александр wrote:

> Done
>
> Sent you the data
>
> Thank you!
>
>
> On Wednesday, August 19, 2020 at 11:56:38 PM UTC+3, adsapiforumadvisor 
> wrote:
>>
>> Hello,
>>
>> Can you please *reply privately to author *your CID, report query and 
>> report results so I can further troubleshoot?
>>
>> Thanks,
>> Anthony
>> Google Ads API Team
>>
>> ref:_00D1U1174p._5004Q23t8yd:ref
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f109bb7d-9ee2-4e57-ad75-2b6be1ea3f66n%40googlegroups.com.


Re: Google Ads API Access to account directly, without MCC and login-customer-id

2020-12-09 Thread Ершов Александр
It works under old Adwords API, so that's a bit weird to me
It means that to have access to account which wasn't created by me (was 
created by another MCC), I either need
- get OAuth credentials from original MCC 
- connect this account not directly to my email, but to my MCC email 
account, and use my own Oauth credentials

Am I getting this right?

On Thursday, December 10, 2020 at 2:17:36 AM UTC+3 Ершов Александр wrote:

> Hello!
>
> I have a working access to account in the old Adwords API 
> - customerId
> - developerToken
> - clientId (from my email which has Standard Access and can access via 
> Google Ads UI)
> - clientSecret
>
> This account isn't connected to my MCC, I have only Standard access to it.
>
> But when I try to connect via Ads API, I get an error
>
> *"message": "The caller does not have permission",*
>
> *"code": 7,*
>
> *"status": "PERMISSION_DENIED",*
> I tried the following options
> - empty
> - my MCC (though it's connected)
>
> So I want to know, is it required field, so I need to access like this
> (App) => (MyMCC) => (Account)
>
> and not like this
> (App) => (Account)
>
> We are preparing to migrate to from Adwords API,
> so if this additional field is required and there is no way of working the 
> old way,
>  please let me know
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/74834f9c-273c-4a38-b96f-7e01a2d8cb37n%40googlegroups.com.


Re: Google Ads API Access to account directly, without MCC and login-customer-id

2020-12-09 Thread Ершов Александр
And if so, will the following work

- Another MCC gives access to account to my MCC
- I create OAuth credentials
- connect using loginCustomerID = my MCC id
- specify this account via  

adsServiceClient->searchStream(customerId, $query);
- work with it

On Thursday, December 10, 2020 at 2:20:03 AM UTC+3 Ершов Александр wrote:

> It works under old Adwords API, so that's a bit weird to me
> It means that to have access to account which wasn't created by me (was 
> created by another MCC), I either need
> - get OAuth credentials from original MCC 
> - connect this account not directly to my email, but to my MCC email 
> account, and use my own Oauth credentials
>
> Am I getting this right?
>
> On Thursday, December 10, 2020 at 2:17:36 AM UTC+3 Ершов Александр wrote:
>
>> Hello!
>>
>> I have a working access to account in the old Adwords API 
>> - customerId
>> - developerToken
>> - clientId (from my email which has Standard Access and can access via 
>> Google Ads UI)
>> - clientSecret
>>
>> This account isn't connected to my MCC, I have only Standard access to it.
>>
>> But when I try to connect via Ads API, I get an error
>>
>> *"message": "The caller does not have permission",*
>>
>> *"code": 7,*
>>
>> *"status": "PERMISSION_DENIED",*
>> I tried the following options
>> - empty
>> - my MCC (though it's connected)
>>
>> So I want to know, is it required field, so I need to access like this
>> (App) => (MyMCC) => (Account)
>>
>> and not like this
>> (App) => (Account)
>>
>> We are preparing to migrate to from Adwords API,
>> so if this additional field is required and there is no way of working 
>> the old way,
>>  please let me know
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b782d97b-2b7a-472f-8ae8-b0cf0c2d819en%40googlegroups.com.


Google Ads API Access to account directly, without MCC and login-customer-id

2020-12-09 Thread Ершов Александр
Hello!

I have a working access to account in the old Adwords API 
- customerId
- developerToken
- clientId (from my email which has Standard Access and can access via 
Google Ads UI)
- clientSecret

This account isn't connected to my MCC, I have only Standard access to it.

But when I try to connect via Ads API, I get an error

*"message": "The caller does not have permission",*

*"code": 7,*

*"status": "PERMISSION_DENIED",*
I tried the following options
- empty
- my MCC (though it's connected)

So I want to know, is it required field, so I need to access like this
(App) => (MyMCC) => (Account)

and not like this
(App) => (Account)

We are preparing to migrate to from Adwords API,
so if this additional field is required and there is no way of working the 
old way,
 please let me know

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/fdb4a14f-4d84-49fe-b53a-0389bf3a6ebbn%40googlegroups.com.


Re: Google Ads API Access to account directly, without MCC and login-customer-id

2020-12-18 Thread Ершов Александр
Hello, Ernie!

Got it, thank you

It worked. Appreciate your help!

On Friday, December 11, 2020 at 12:59:17 PM UTC+3 adsapiforumadvisor wrote:

> Hi,
>
> Thank you for raising your concern.
>
> To summarize the authentication on Google Ads API, if the OAuth2 
> credentials you are using were created by a user which is a user of your 
> MCC/manager account, then you would need to include the MCC's customer ID 
> as the login-customer-id in your properties file. Please refer to this 
> document 
> 
>  to 
> read more information about login-customer-id.
>
> Also, the process that you've mentioned in your latest reply appears to be 
> the proper way of authenticating in Google Ads API.
>
> Regards,
> [image: Google Logo] 
> Ernie John Blanca Tacata 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q28oovG:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/dc6aefb3-2805-4260-bfff-d9028d1df096n%40googlegroups.com.


Re: Create a seasonality adjustment

2021-04-13 Thread Ершов Александр
Hello, adsapiforumadvisor!

Could you please inform me, are there any changes on this front?

On Thursday, August 27, 2020 at 6:51:32 PM UTC+3 adsapiforumadvisor wrote:

> Hi Bas,
>
> Thank you for reaching out. This feature is not currently supported in the 
> API. There is an outstanding feature request for it so you can have your 
> client keep an eye on our Developer Blog 
>  for information about future 
> releases.
>
> Thanks,
>
> [image: Google Logo] 
> Nirmitabahen Gaurav Patel 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q23v7IH:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/464e2c72-cbb4-4d40-a1bb-b456d916940dn%40googlegroups.com.


Re: all_conversion_value returns zero in Google Ads API, but works in Google Adwords API

2022-03-10 Thread Ершов Александр
Hello!
Found out the issue, it was on my side.
I was using the method to get Conversions.
Should have use getAllConversionsValue(). 
When switched to it, data started coming.

Only one question left.
When I was calculating the data in the Google Adwords API (ROAS), to make 
sure it's equal to the UI value of ROAS,
I had to subtract the cost of mobile calls via the code below.
Should I use it in the new Google Ads API, too?
May be you know, just wanted to check with you

$query = (new ReportQueryBuilder())

->select([

'AllConversionValue', 'Cost', 'Device'

])


->from(ReportDefinitionReportType::ACCOUNT_PERFORMANCE_REPORT)

->where('ClickType')->in(['CALLS'])

->where('Device')->in(['HIGH_END_MOBILE'])

->duringDateRange(ReportDefinitionDateRangeType::TODAY)

->build();


$reportSettingsOverride = (new ReportSettingsBuilder())

->build();

On Thursday, March 10, 2022 at 9:42:10 AM UTC+4 adsapi wrote:

> Hi,
>
> Thank you for posting your concern to our team.
>
> To investigate the issue, could you provide the complete request 
> 
>  and response 
> 
>  logs 
> with request ID 
> 
>  and request header 
> 
>  generated 
> on your end where we can see the error?
>
> You can provide it via *Reply privately to author* option. If this option 
> is not available, then send it instead on this email address 
> googleadsa...@google.com.
>
> Regards,
> [image: Google Logo] 
> Ernie John 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2XnAQ2:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b50d0131-92fd-4344-9a70-a2f740228340n%40googlegroups.com.


all_conversion_value returns zero in Google Ads API, but works in Google Adwords API

2022-03-09 Thread Ершов Александр
Hello!
This code works correctly in the Google Adwords API

$query = (new ReportQueryBuilder())

->select([

'AllConversionValue', 'Cost', 'Device'

])

->from(ReportDefinitionReportType::ACCOUNT_PERFORMANCE_REPORT)

->duringDateRange(ReportDefinitionDateRangeType::TODAY)

->build();

but the new one ( I used conversion tool 
https://developers-dot-devsite-v2-prod.appspot.com/google-ads/api/docs/migration/query-migration-tool_a8523c3e61730f1a26af89941c07e858bcc10faf0d6c1a006181be96d8c0b4fb.frame?hl=ru#loaded
  
) returns all_conversion_value, equal to zero (but cost value is correct 
for all segments)

SELECT metrics.all_conversions_value, metrics.cost_micros, segments.device 
FROM customer WHERE segments.date DURING TODAY

The requests are done to the same account, it's been verified.


Could you please take a look, when you have time?

Best regards API

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8ab8ec7d-c2a9-4b1a-9653-b5f2b07b1d3dn%40googlegroups.com.


What is the exact Google Ads API v9 sunset date?

2022-05-07 Thread Ершов Александр
Hello!
I see on this page that the sunset for Google Ads API is June or July 2022
Could you please tell me the exact deadline of the sunset?
https://developers.google.com/google-ads/api/docs/sunset-dates


Because it affects planning of our other tasks and we can't plan,
unless we known the exact date

Best regards, 
Alexander

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/c9a00944-a0a1-4814-848b-8fc814215da7n%40googlegroups.com.


Re: What is the exact Google Ads API v9 sunset date?

2022-05-11 Thread Ершов Александр

Hello, Jakeia Sabrina!

The v10 library for PHP which we're using contains a couple of big changes
- requires PHP 7.4
- requires Composer v2.0

So before deploying it to production, we need to make sure that our 
websites using the Google Ads API php library is fully functional and work 
without any issues.
It's a big change and requires time to QA and fix some issues that come 
along the way.

That's why it's important for us to know what "June/July 2022" means - 
closer to 1st of June or the 31st of July.
Since it's only a couple of weeks before the June, we're assuming the worst 
case scenario (1st of June is the deadline),
but wanted to know from the Google Ads API team. 

Best wishes,
Alexander

On Tuesday, May 10, 2022 at 6:51:39 PM UTC+4 adsapi wrote:

> Hello,
>
> Thanks for reaching out to the Google Ads API forum. Currently as of time 
> we can just confirm that v9 will be sunsets in June/July 2022. The exact 
> date is not announced yet.
> However, it'll be announced on our Google Ads developer blog 
> 
>  
> when it gets closer to the date.
>
> Feel free to reply back if you have any other questions.
>
> Best regards,
> [image: Google Logo] 
> Jakeia Sabrina 
> Google Ads API Team  
>
> ref:_00D1U1174p._5004Q2aqeO3:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/224e206b-7bc5-45dd-8126-ead66e932306n%40googlegroups.com.