How to get predefined Time Reports in google api

2020-05-04 Thread Naveen Kumar
Hello team

I would like to get the time based predefined reports for my ad accounts 
throught google ads api. How do i get that ? I do not see relevant reports 
in report types of the documentaiton

Regards

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/4b2c1000-f55e-4dd8-bc9e-83b2e7a6d4be%40googlegroups.com.


Re: Enabled CampaignSharedSet which is attached to Removed SharedSet

2020-05-04 Thread 'Tetiana Omelinska' via AdWords API and Google Ads API Forum
Hi Danica,

I replied you privately with detailed information about our issue.
Have you received my email?

BR,
Tetiana

On Thursday, April 30, 2020 at 9:27:27 PM UTC+3, adsapiforumadvisor wrote:
>
> Hi Tetiana,
>
> Thanks for reaching out to us! Yes, kindly share your CID as well as the 
> detailed request and response logs from the API so that I can further look 
> into it along with any additional screenshots that reflect the issue you 
> are facing. Can you also clarify which accounts were able to remove 
> SharedSets and what steps they followed in order to do so? 
>
> Thanks,
> Danica Calusin, Google Ads API Team
>
> ref:_00D1U1174p._5001UaSxGg: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/fa23f098-7b32-4540-8336-e7739f930d93%40googlegroups.com.


Re: Google AdWords API: RequiredError.REQUIRED, operations[0].operand.criterion.parentCriterionId, and PRODUCT_PARTITION_DOES_NOT_EXIST

2020-05-04 Thread gagan gupta
Wonderful and Respectful, this worked for now :)

Now I want to create one more level of SubDivision on the same.

For example:
1. Split childBiddableAdGroupCriterion into 2 Units again, one will have 
CUSTOM_ATTRIBUTE_1 as "someValue2" and Everything Else.
This Means I want All products which have  CUSTOM_ATTRIBUTE_1 as 
"someValue2" AND CUSTOM_ATTRIBUTE_0 as "someValue1"

OR 
2. Split childNegativeAdGroupCriterion into 2 Units again, one will have 
CUSTOM_ATTRIBUTE_1 as "someValue" and Everything Else.
This Means I want All products which have  CUSTOM_ATTRIBUTE_1 as 
"someValue2" AND does not have CUSTOM_ATTRIBUTE_0 as "someValue1"

3. How to do above Operations in this campaign by replacing Whole Product 
Partition Entities with Entirely new Product Partition Entities.


On Saturday, May 2, 2020 at 5:24:52 AM UTC+5:30, adsapiforumadvisor wrote:
>
> Hi Gagan,
>
> The PRODUCT_PARTITION_SUBDIVISION_REQUIRES_OTHERS_CASE error will occur if 
> the *only* node you create is the root node. If instead you create the 
> root node (without a *caseValue*) and its children all in the *same 
> mutate request* (as shown below), then the request should succeed.
>
> // Create Main Parent parentProductPartition and Main Parent 
> BiddableAdGroupCriterion
> ProductPartition parentProductPartition = new 
> ProductPartition();
> 
> parentProductPartition.setPartitionType(ProductPartitionType.SUBDIVISION);
> parentProductPartition.setId(-1L);
>
> BiddableAdGroupCriterion parentBiddableAdGroupCriterion = new 
> BiddableAdGroupCriterion();
> 
> parentBiddableAdGroupCriterion.setCriterion(parentProductPartition);
> 
> parentBiddableAdGroupCriterion.setAdGroupId(Long.parseLong(adGroupID));
> 
> parentBiddableAdGroupCriterion.setUserStatus(UserStatus.PAUSED);
> 
> parentBiddableAdGroupCriterion.setCriterionUse(CriterionUse.BIDDABLE);
>
> // Create child BiddableAdGroupCriterion and Child 
> ProductPartition on CUSTOM_ATTRIBUTE_0
> ProductPartition childProductPartition = new 
> ProductPartition();
> 
> childProductPartition.setPartitionType(ProductPartitionType.UNIT);
> 
> childProductPartition.setParentCriterionId(parentProductPartition.getId());
>
> ProductCustomAttribute productDimension1 = new 
> ProductCustomAttribute();
> 
> productDimension1.setProductDimensionType("ProductCustomAttribute");
> 
> productDimension1.setType(ProductDimensionType.CUSTOM_ATTRIBUTE_0);
> productDimension1.setValue("auto-high10");
> childProductPartition.setCaseValue(productDimension1);
>
> BiddableAdGroupCriterion childBiddableAdGroupCriterion = new 
> BiddableAdGroupCriterion();
> 
> childBiddableAdGroupCriterion.setCriterion(childProductPartition);
> 
> childBiddableAdGroupCriterion.setAdGroupId(Long.parseLong(adGroupID));
> 
> childBiddableAdGroupCriterion.setUserStatus(UserStatus.ENABLED);
> 
> childBiddableAdGroupCriterion.setCriterionUse(CriterionUse.BIDDABLE);
>
> // Create child NegativeAdGroupCriterion and Child 
> ProductPartition on CUSTOM_ATTRIBUTE_0
> ProductPartition childNegativeProductPartition = new 
> ProductPartition();
> 
> childNegativeProductPartition.setPartitionType(ProductPartitionType.UNIT);
> 
> childNegativeProductPartition.setParentCriterionId(parentProductPartition.getId());
>
> ProductCustomAttribute productDimension2 = new 
> ProductCustomAttribute();
> 
> productDimension2.setProductDimensionType("ProductCustomAttribute");
> 
> productDimension2.setType(ProductDimensionType.CUSTOM_ATTRIBUTE_0);
> childNegativeProductPartition.setCaseValue(productDimension2);
>
> NegativeAdGroupCriterion childNegativeAdGroupCriterion = new 
> NegativeAdGroupCriterion();
> 
> childNegativeAdGroupCriterion.setCriterion(childNegativeProductPartition);
> 
> childNegativeAdGroupCriterion.setAdGroupId(Long.parseLong(adGroupID));
> 
> childNegativeAdGroupCriterion.setCriterionUse(CriterionUse.NEGATIVE);
>
> // Set Operation
> AdGroupCriterionOperation parentAdGroupCriterionOperation = 
> new AdGroupCriterionOperation();
> 
> parentAdGroupCriterionOperation.setOperand(parentBiddableAdGroupCriterion);
> parentAdGroupCriterionOperation.setOperator(Operator.ADD);
>
> AdGroupCriterionOperation child1AdGroupCriterionOperation = 
> new AdGroupCriterionOperation();
> 
> child1AdGroupCriterionOperation.setOperand(childNegativeAdGroupCriterion);
> child1AdGroupCriterionOperation.setOperator(Operator.ADD);
>
> AdGroupCriterionOperation child2AdGroupCriterionOperation = 
> new AdGroupCriterionOperation();
> 
> child2AdGroupCriteri

How to send goal details using API ?

2020-05-04 Thread sudhakar dadi
Hi,

I want to pass goal details using API. But I couldn't find any api related 
to goal. Could you please help me with this?

I am referring the below goal link.
https://support.google.com/google-ads/answer/7450050?hl=en 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/4683f7d4-f0b1-4b27-b351-a02245382449%40googlegroups.com.


Get Account Budget Spend

2020-05-04 Thread Sanket Tandalekar
Hi,

I'm working on Google Adwords and specifically on Account Budget module. I
got the Account budget by calculating spendinglimit and totaldjustments but
I don't know how to calculate Budget Spend or which API to use to resolve
this issue. Can you help me out with this?

Thanks,
Sanket Tandalekar

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/CAEqkhmmuOedW2wrkancQ%3DZCnQmzJfY9VunHVzgNUkxTYHWu_2w%40mail.gmail.com.


Re: How to get Conv values (by conv time) and Conversions (by conv time) metrics?

2020-05-04 Thread Kenny Nguyen
Thanks for the answer.

Best,
Kenny.

On Wednesday, April 29, 2020 at 9:40:55 PM UTC+7, adsapiforumadvisor wrote:
>
> Hi Kenny,
>
> These are not currently available in the API. I will file a feature 
> request on your behalf.
>
> You can follow our blog  for any 
> announcements.
>
> Regards,
> Anthony
> Google Ads API Team 
>
> ref:_00D1U1174p._5001UaSmGc: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/e183cdb4-2a50-406f-9512-88de5d79b8f7%40googlegroups.com.


Re: Difference between Google Ads UI, Google Ads Big Query Export Data and Google Ads API

2020-05-04 Thread Venika Wadhwa
Hi 
Did your problem get solved ? I am facing the same issue certain campaigns 
are missing can't figure out why.

On Thursday, November 21, 2019 at 3:14:02 PM UTC+5:30, Manuel Spierenburg 
wrote:
>
> Hi,
>
> I'm seeing some difference in the data when I compare the google ads ui 
> with data from our daily BQ export and when I query data with the google 
> ads api.
> For example number of campaigns:
>
> When I check in the UI on MCC level and use filter enabled + eligible I 
> see 10887 campaigns
> In the BQ table with filter enabled and serving I count 10859 campaigns
> And querying all enabled and serving campaigns via the google ads api I 
> see 10862 campaigns.
>
> These are small differences but what could be the reason to get these 
> different numbers?
>
> When I compare audiences though the differences are much bigger.
> Unfortunately I can not see all audiences on MCC level in the UI.
>
> But when I query all user list criteria with help of the api I get: 454167 
> criteria which have 9673 unique campaign ids
> When I check the Audience table I see 223155 entries though with 5871 
> unique campaign ids
> And when I check the Criteria table with filter USER_LIST on criteria type 
> I get 156290 entries with 121 unique campaign ids
>
> Why do I see these differences?
>
> Maybe I do not fully understand the content of the Audience and Criteria 
> table. 
> Shouldn't they include all audiences on a daily level?
>
> Thank you,
>
> Manuel
>  
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/c1863150-8452-488b-a835-2d3185f372f2%40googlegroups.com.


RE: How To Set Scheduling To Feed Item on .Net Client

2020-05-04 Thread Google Ads API Forum Advisor Prod
Hi Mehmet,

When you create your ExtensionFeedItem, you set its scheduling to a 
FeedItemScheduling object. You should see a scheduling field for all of the 
ExtensionFeedItem types.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001UaT6Nw: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/JkB-f0Q9T6KI00Mx1UMBPXQxCV4qCwTb8eaA%40sfdc.net.


Re: How to add global negative placements

2020-05-04 Thread cv
Hi Anthony,

I would also like to assign created SharedSet to campaigns.
For that,
I was using like this

$campaignSharedSet = new CampaignSharedSet([
'campaign' => new StringValue(
['value' => 
ResourceNames::forCampaign($this->customerId, $campaignId)]
),
'shared_set' => new StringValue(['value' => 
'customers/XX/sharedSets/'])
]);

$campaignSharedSetOperation = new 
CampaignSharedSetOperation();
$campaignSharedSetOperation->setCreate($campaignSharedSet);

$campaignSharedSetServiceClient = 
$googleAdsClient->getCampaignSharedSetServiceClient();
$response = 
$campaignSharedSetServiceClient->mutateCampaignSharedSets(
$this->customerId,
[$campaignSharedSetOperation]
);

But API is giving error related to protobuf.

An uncaught Exception was encountered


Type:Exception

Message: Expect 
Google\Ads\GoogleAds\V3\Services\CampaignSharedSetOperation.

Filename:
/google-ads-php/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBUtil.php

Line Number: 197



On Tuesday, 28 April 2020 23:12:10 UTC+5:30, adsapiforumadvisor wrote:
>
> Hello,
>
> I will add a feature request on your behalf to have this added to the API.
>
> Regards,
> Anthony
> Google Ads API Team
>
> ref:_00D1U1174p._5001UaSU68: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/460cd0dd-64f5-4a7a-a3f3-dc187f6b7a9e%40googlegroups.com.


RE: The campaign type search network with display select from the API gives me empty title.

2020-05-04 Thread Google Ads API Forum Advisor Prod
Hi Dileep,

Can you please provide me the API report query you used to get this 
information? Please send this via reply privately to author. From your 
screenshot, it looks like you are using the Google Ads interface, not the API.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5004Q1zJvy6: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/hOAkH0Q9T8E000af5YpxXITEy1WSdJOvXdYA%40sfdc.net.


RE: Filtering ConversionCategoryName for 'Other' Is not working

2020-05-04 Thread Google Ads API Forum Advisor Prod
Hello,

I will need to take a closer look at this. Can you please reply privately to 
author your report definitions and CID?

Thanks,
Anthony
Google Ads API Team
ref:_00D1U1174p._5004Q1zJvgb: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/K2q2V0Q9TDKQ00Y3fwfx0LSJuM0J6D4li87g%40sfdc.net.


RE: How to get predefined Time Reports in google api

2020-05-04 Thread Google Ads API Forum Advisor Prod
Hi Naveen,

Thanks for reaching out. With regards to your concern about the to get the time 
based predefined reports via Google Ads API, Unfortunately there is no specific 
report available in the API. But,you can use the below list of the time based 
predefined reports and their matching segments.

Day of week = Segments.day_of_week

Week=Segments.week

Month=Segments.month

Quarter=Segments.quarter

year=Segments.year

Hours of day=Segments.hous

Please let me know if you have any questions.


Thanks,
Nirmita Patel Google Ads Team
ref:_00D1U1174p._5004Q1zJwkt: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/t8Jtx0Q9TE6F00jRxcvyI2TOqR4r30bMQZdQ%40sfdc.net.


RE: How to send goal details using API ?

2020-05-04 Thread Google Ads API Forum Advisor Prod
Hi Sudhakar,

Thanks for reaching out. With regards to your concern about to pass goal 
details using API, Unfortunately, there is no way to set the goal using the 
API. You will have to do it manually in the UI. There is an existing feature 
request for this so I would recommend keeping an eye on our Developer Blog for 
information on future releases.

Let me know if you have any questions.

Thanks,
Nirmita Patel Google Ads Team
ref:_00D1U1174p._5004Q1zJx4A: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/BfpoI0Q9TETY00TY0BxCkvR9OQwQxldwjpWw%40sfdc.net.


RE: Accidentally deleted Client ID and Secret

2020-05-04 Thread Google Ads API Forum Advisor Prod
Please ensure you "Reply privately to author" to ensure that this information 
remains protected.

Thanks,
Danica, Google Ads API Team
ref:_00D1U1174p._5004Q1zJw1f: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/cXeWt0Q9TGUQ00y-QF0eJnQOSziScq60fRrA%40sfdc.net.


UnmarshallingError when trying to call ConversionTrackerService using the Ruby library

2020-05-04 Thread Mateus Luiz


Hello, I'm trying to get my conversions created using the Ruby library with 
following code:

```
@client = AdwordsApi::Api.new
service = @client.service(:ConversionTrackerService, :v201809)
service.get

```

But I'm always getting this error back:

WARN -- : ID: 154-447-7958, URL: 
https://adwords.google.com/api/adwords/cm/v201809/ConversionTrackerService, 
Service: ConversionTrackerService, Action: get, Response time: ms, Request 
ID: , Is fault: true, Fault message: Unmarshalling Error: cvc-elt.3.1: 
Attribute 'http://www.w3.org/2001/XMLSchema-instance,nil' must not appear 
on element 'serviceSelector', because the {nillable} property of 
'serviceSelector' is false.

I've read here 

 that 
I need to pass a blank `external_id`, but I could't find how to do in the 
docs, what I'm doing wrong? 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/0d61b299-5a39-4ba6-aec7-6fc545785e4e%40googlegroups.com.


RE: Difference between Google Ads UI, Google Ads Big Query Export Data and Google Ads API

2020-05-04 Thread Google Ads API Forum Advisor Prod
Hi Venika,

Thank you for reaching out. In terms of the discrepancies between the Google 
Ads UI and API, can you please provide your client customer ID plus any 
relevant logs/reports that further explain the issue via Reply privately to 
author so that I can further investigate the issue?

For issues with BigQuery, I would recommend contacting their support team here.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5004Q1zJxMv: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/M7xfT0Q9THA600F2Pq9c3bRIiUgL8Tgl32FQ%40sfdc.net.


Google ads customer list using PHP REST API

2020-05-04 Thread Amit
Hi. 

How do I retrieve customer list after OAuth2.0 login authentication using 
REST API PHP? 

I am looking for the customer IDs and Names after successful login. I wish 
to retrieve the result in JSON format after making a REST API call in PHP. 
Please give me the API that I can call. Also, share the variables and 
values I need to pass with the API. 

After that I wish to retrieve the campaigns, ads, etc. using the customer's 
ID. Is it possible?

Please help me by providing guidelines, examples and tutorials. 


Thanks,
Amit 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/41a3dde7-60cc-4f4b-8303-e84cf7349b7b%40googlegroups.com.


RE: where can i get all changes made by employees on a google Ads account for a given date range (Change history)?

2020-05-04 Thread Google Ads API Forum Advisor Prod
Hi Dileep,

Thank you for reaching out to us. Unfortunately CustomerSyncService doesn't 
provide the users who've made the change. I can request this feature to be 
added in future installments. In the meantime, please follow our blog for if 
and when this feature is added and for more updates.

Thank you,
Bryan, Google Ads API Team
ref:_00D1U1174p._5004Q1zJszM: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/cH4r80Q9THIQ00yWjJz2pIT1O6sVKPjMuttA%40sfdc.net.


RE: Get Account Budget Spend

2020-05-04 Thread Google Ads API Forum Advisor Prod
Hi Sanket,

Thank you for reaching out to us. I see that you're trying to find how much 
you've spent of your budget via the API. You can use Account Performance Report 
and pull the cost field to find how much of your budget you've spent. Let me 
know if you have further questions.

Thank you,
Bryan, Google Ads API Team
ref:_00D1U1174p._5004Q1zJxNl: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/uogaf0Q9TK2L00epU_c0DcThObi_LFGHwmQw%40sfdc.net.


Re: How to add global negative placements

2020-05-04 Thread Google Ads API Forum Advisor Prod
Hi,

Could you please reply privately to author your full request and response  so I 
can see what the error you are facing is?

Thanks,
Anthony
Google Ads API Team
ref:_00D1U1174p._5001UaSU68: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/RMGTm0Q9TKBI00rmJ3JnGISAKNLYlgpgi9Pg%40sfdc.net.


Re: Enabled CampaignSharedSet which is attached to Removed SharedSet

2020-05-04 Thread Google Ads API Forum Advisor Prod
Hi Tetiana,

Yes, I received your email - thanks for providing those details! Can you please 
clarify a few things for me? You mentioned the following:

When we update rule, we unapply campaigns from SharedSet, remove SharedSet and 
create the new one with up to date rule.

Are you performing these actions within the API or the UI? If you are doing so 
with the API, can you please provide information on what services you are using 
and provide detailed logs of the requests/responses?


Thanks,
Danica, Google Ads API Team
ref:_00D1U1174p._5001UaSxGg: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/axBID0Q9TM7V00Cjc3ugm2SA65uPrME_YIHg%40sfdc.net.


Re: Google AdWords API: RequiredError.REQUIRED, operations[0].operand.criterion.parentCriterionId, and PRODUCT_PARTITION_DOES_NOT_EXIST

2020-05-04 Thread Google Ads API Forum Advisor Prod
Hi,

To convert a UNIT (leaf) node to a SUBDIVISION, you need to have the following 
operations in the same request:

Remove the existing UNIT node.
Add a new SUBDIVISION node.
Add child UNIT nodes of the new SUBDIVISION node.

Please see this section of the Shopping campaigns guide .

Thanks,
Josh, Google Ads API Team
ref:_00D1U1174p._5001UaSxD8: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/PceSu0Q9TPYT00poE05AKKRA691oekq13LqQ%40sfdc.net.


Re: Error message while downloading data

2020-05-04 Thread Mariana Mireles
Hi Marketing Marketing.

Could you explain to me How to fix the problem. At this moment, I have the 
same. :(

On Tuesday, 3 April 2018 23:25:38 UTC-5, Marketing Marketing wrote:
>
> Hi Milind, thank you so much for your patience and hearing me out. I have 
> been able to solve the problem. I tried a bunch of settings for this.
>
> I am now able to download the data.
>
> Regards
> Anu
>
> On Wednesday, April 4, 2018 at 12:16:04 AM UTC+8, Milind Sankeshware 
> (AdWords API Team) wrote:
>>
>> Hi,
>>
>> The client libraries that are supported by AdWords API are listed here 
>> . R is 
>> not one of the supported languages for AdWords API. About the error, could 
>> you please check R studio support thread 
>> ,
>>  
>> which might be helpful for you.
>> If you have any specific question about the API services, please let me 
>> know. 
>>
>> 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a6242463-0e07-4131-9c0f-073748c28b8f%40googlegroups.com.


RE: UnmarshallingError when trying to call ConversionTrackerService using the Ruby library

2020-05-04 Thread Google Ads API Forum Advisor Prod
Hi Mateus,

Thanks for reaching out. Can you please provide the complete detailed logs for 
the request and response so that I may take a closer look? Additionally, can 
you confirm if 154-447-7958 is your CID? When providing this information, 
please ensure you "Reply privately to author."

Thanks,
Danica Calusin, Google Ads API Team
ref:_00D1U1174p._5004Q1zK2Z8: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/nyY2M0Q9TR5P006XfXKz1rSzK1uUG6a3PaTQ%40sfdc.net.


RE: Google ads customer list using PHP REST API

2020-05-04 Thread Google Ads API Forum Advisor Prod
Hi Amit,

Thanks for reaching out. With regards to your concern about retrieving customer 
ids using a customer list, you can refer to this code example and refer to this 
guide.

For your second concern about to retrieve campaign, ads  using customer id, you 
will have to make the call with a client account instead of an MCC account in 
order to retrieve the campaign. You can find all the examples of the Google Ads 
API here.

Let me know if you have any questions.

Thanks,
Nirmita Patel Google Ads Team
ref:_00D1U1174p._5004Q1zK324: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/__PJV0Q9TRJ700R56O8wcDR3qBnADrKfnczw%40sfdc.net.


Google Ads Developer Docs - Site Crash

2020-05-04 Thread 'Jeff Feng' via AdWords API and Google Ads API Forum
Hi all,

I'm working on some Ads API development and noticed that the developer docs 
site has been crashing - 
https://developers.google.com/google-ads/api/docs/start
I've tried this on multiple devices and networks. Each time I load the page 
I get a 'Service Unavailable' error - is the same thing happening to you 
all?

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/c865377c-6ec3-4973-977c-c62f585d2459%40googlegroups.com.


Re: issue with SearchImpressionShare for whole Campaign

2020-05-04 Thread Daniel Alvarado
Hi Mitchell, 

That makes sense. However, is there any way we can obtain Potential 
Impressions from the AdWords API? I checked the Campaign Performance Report 

 
columns and it doesn't seem to be a column listed in there. We obtain data 
segmented by day for each campaign in our MCC, and we would like to be able 
to show a summary of the Last 7, 14, or custom dates. So we would want to 
be able to know what data we can store daily, to perform this calculation 
and make our data show as close as possible to what the Web UI would. 

On Thursday, April 30, 2020 at 8:42:56 AM UTC-6, adsapiforumadvisor wrote:
>
> Hi Evgeniy,
>
> Thank you for reaching out. Getting the total search IS for the campaign 
> isn't just the average of the search IS for all the keywords. It is the 
> total impressions / total potential impressions. One of your keywords could 
> have 2 total impressions / 2 potential impressions and have an IS of 100% 
> while another keyword could have 10 total impressions / 100 potential 
> impressions and have an IS of 10%. The total would then be 12 impressions / 
> 102 potential impressions which is very different from the average of 100% 
> and 10%. You should think of it as a weighted average.
>
> If you are still having any issues, please share your client customer ID 
> and the un-masked report definition *via Reply privately to author*.
>
> Regards,
> Mitchell
> Google Ads API Team
>
> ref:_00D1U1174p._5001UaSwjn: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/1a92fa12-ee69-44f8-aa11-12e8721525d0%40googlegroups.com.


more examples for php google ads api recommendations type

2020-05-04 Thread Shiv Kumar
It would be great if someone point me to the PHP client library 
documentation for google ads API for retrieving data for all recommendation 
types.

I really find it hard as the basic examples provided or the documentation 
of the API or the PHP library doesn't even specify which class methods to 
use to retrieve data for example for recommendation type 'KEYWORD'.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/72070c10-d6c0-4b07-823f-f5a9bd0f1c41%40googlegroups.com.


Re: Google AdWords API: RequiredError.REQUIRED, operations[0].operand.criterion.parentCriterionId, and PRODUCT_PARTITION_DOES_NOT_EXIST

2020-05-04 Thread gagan gupta
Ok, I will try this.
One Suggestion: You can implement Facade Design Patterns to hide complexity 
and expose the simple Facade to End User.
I this way, not all product partition complexity will be exposed to 
end-user, you can create a wrapper on top of this, and end-user will see a 
simple facade that is easy to use by reading documentation quickly.
Facebook Product ser creation is very simple:
There we can mention directly in JSON what conditions we need for example: 

Check out this link:
https://sourcemaking.com/design_patterns/facade

Regards,
Gagan

On Tuesday, May 5, 2020 at 1:53:42 AM UTC+5:30, adsapiforumadvisor wrote:
>
> Hi,
>
> To convert a UNIT (leaf) node to a SUBDIVISION, you need to have the 
> following operations in the *same* request: 
>
>1. Remove the existing UNIT node. 
>2. Add a new SUBDIVISION node. 
>3. Add child UNIT nodes of the new SUBDIVISION node. 
>
> Please see this section of the Shopping campaigns guide 
> 
>  
> .
>
> Thanks,
> Josh, Google Ads API Team
>
> ref:_00D1U1174p._5001UaSxD8: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/33d62f89-cac5-4212-af1c-30cf148baa73%40googlegroups.com.