RE: Mutate Video Campaigns via API

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Paul,


I'm Kevin from the Google Ads API Team.


I can confirm that video campaigns still can't be managed/mutated via Google 
Ads API. I'm afraid that I can't comment on when this feature will be supported 
in the API. Please follow our blog and release notes for future updates.


Regards,

Kevin Gil Soriano
Google Ads API Team
ref:_00D1U1174p._5004Q2QHGJI: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/BM1Ih0R1ZD4P006sxXnvWVT76feuxC4fPz6A%40sfdc.net.


How to include LabelIds and Labels in Ad Peformance Reporting?

2021-11-02 Thread Marvin Laskov


I am trying to create a report for Extended Text Ads using Google Ads API 
in the python language.

I was able to do this for my reporting using Adwords API whereby I selected 
labels and labelids in the columns field.
cols = [ 'AccountDescriptiveName', 'AdGroupId', 'AdGroupName', 
'AdGroupStatus', 'AdNetworkType2', 'AdType', 'CampaignId', 'CampaignName', 
'CampaignStatus', 'Clicks', 'Conversions', 'Cost', 'CreativeFinalUrls', 
'Description', 'ExpandedTextAdDescription2', 'HeadlinePart1', 
'HeadlinePart2', 'ExpandedTextAdHeadlinePart3', 'Id', 'Impressions', 
'LabelIds', 'Labels', 'Path1', 'Path2', 'Status' ]

sel = create_selector( cols, pred_fields=['Status', 'CampaignStatus', 
'AdGroupStatus', 'AdNetworkType2', 'AdType'], pred_operators=['EQUALS', 
'EQUALS', 'EQUALS', 'EQUALS', 'EQUALS'], pred_values=['ENABLED', 'ENABLED', 
'ENABLED', 'SEARCH', 'EXPANDED_TEXT_AD'])

df = get_report_as_df( client, selector=sel, 
report_type='AD_PERFORMANCE_REPORT', date_range_type='LAST_30_DAYS', )

However, from what I understand the new GAQL approach requires using the 
ad_group_ad resource which does not have labelids and labelname inside? I 
know there is a ad_group_ad_label resource however, I am not sure how I can 
make use of it. Also 
https://developers.google.com/google-ads/api/docs/migration/mapping#ad_performance
 tells 
me that I should "Select label.resource_name from the resource 
ad_group_ad_label" but as GAQL queries only allow retrieval of one resource 
how do I go about it?

Currently I have these in my GAQL Query
SELECT customer.descriptive_name, ad_group.id, ad_group.name, 
ad_group.status, ad_group_ad.ad.type, campaign.id, campaign.name, 
campaign.status, metrics.clicks, metrics.conversions, metrics.cost_micros, 
ad_group_ad.ad.final_urls, ad_group_ad.ad.expanded_text_ad.description, 
ad_group_ad.ad.expanded_text_ad.description2, 
ad_group_ad.ad.expanded_text_ad.headline_part1, 
ad_group_ad.ad.expanded_text_ad.headline_part2, 
ad_group_ad.ad.expanded_text_ad.headline_part3, ad_group_ad.ad.id, 
metrics.impressions, ad_group_ad.ad.expanded_text_ad.path1, 
ad_group_ad.ad.expanded_text_ad.path2, ad_group_ad.status FROM ad_group_ad 
WHERE ad_group_ad.status = ENABLED AND campaign.status = ENABLED AND 
ad_group.status = ENABLED AND ad_group_ad.ad.type = EXPANDED_TEXT_AD

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/8f9c64b6-933b-4379-9aff-a5c4dcfeab48n%40googlegroups.com.


Re: Remove duplications in Google Conversions API and Google Analytics

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Bahaa,

Thank you for more information on your concern.

In the Google Ads API's perspective, and as mentioned here, duplicate 
conversions are allowed and would not return errors. However, only the first 
instance will be recorded and the succeeding duplicates will be ignored.

Since you are also using a different source (Google Analytics) then I would 
recommend that you verify this scenario with the Google Ads Product Support 
team via this link, for further guidance. I hope this helps.

Best regards,

Peter Laurence Napa Oliquino
Google Ads API Team
ref:_00D1U1174p._5004Q2QGisy: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/H3Dg20R1Z8RI00rmOxnb73T0So0FJelz6sLw%40sfdc.net.


Re: Missing clicks in geographic_view

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Tommy

It appears that you did not receive the response that I've sent. If you're 
having trouble receiving private replies from us, please check your Spam 
folder. Additionally, please add the 'From address' on that email to your 
contact list to ensure we aren't flagged as Spam in future messages. If you 
don't see a message from us in your Spam folder, please email us directly at 
googleadsapi-supp...@google.com referring to your forum case.

Moving forward, please see the response below that I've sent previously and let 
me know if you have follow up questions about it:
"Thank you for providing further details to your concern. I am also a member of 
the Google Ads API team and let me provide support to your concern.

It appears that the UI is not the correct mapping of the said report type. 
Please note that the provided UI is to get the metrics of the targeted location 
not the location of the presence. With this, you will need to use the 
location_view instead as it summarizes the performance of campaigns by Location 
criteria.

If you want to know the equivalent UI of the location of the presence, then I 
would suggest to reach out to the product team via this link as they are more 
knowledgeable with the UI."

Regards,

Ernie John Blanca Tacata
Google Ads API Team
ref:_00D1U1174p._5004Q2QFicX: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/gtG310R1Z7ZX00H7BUcY55Q72iThgkiDIBJg%40sfdc.net.


RE: LSA Reporting

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Tiana,

Thank you for reaching out.

Local service ads do not appear to be currently supported as seen in this table 
of current supported ad types. If the said local service ad type is supported 
in the Google Ads UI, you may send to our team the complete screenshot 
containing the said ad and its metrics, so our team can then create a feature 
request, subject for review.

Also, if your screenshot will contain your user or account information, you may 
then send the requested details via the Reply privately to author option. If 
this option is not available, you may send the details directly to our 
googleadsapi-supp...@google.com alias instead.

Best regards,

Peter Laurence Napa Oliquino
Google Ads API Team
ref:_00D1U1174p._5004Q2QHDpG: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/CsGzp0R1Z7MG00LJWwDznTR9y3zIrYL8hogQ%40sfdc.net.


Re: Create campaign error

2021-11-02 Thread 娜娜
Hi Nadine,
Thanks for reply.
If there is any possibility to change our optimization on a display 
campaign by uploading a doc. caused the API is not supported now.

在2021年11月3日星期三 UTC+8 上午5:51:40 写道:

> Greetings!
>
> It appears that you are setting selective optimization on a Display 
> campaign. This was never documented as being supported. Setting selective 
> optimization was meant for app-based campaigns. There was a recent upgrade 
> in your Google Ads account that caused the API to recognize this unexpected 
> request and reject the request since it was not formally supported in the 
> first place.
>
> I'm currently chatting with my fellow engineers to see what the next steps 
> are for possibly turning selective optimization on for Search and Display 
> campaigns even if it was not formally supported before. I'll keep you 
> posted. 
>
> Cheers,
> Nadine Wang, Google Ads API Team
>
>  
>
> ref:_00D1U1174p._5004Q2QGtpw: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/e42cea56-e606-4edc-a57d-1418f4e7765fn%40googlegroups.com.


RE: Resource change_event does not provide old_resource and new_resource in update operation of CAMPAIGN_CRITERION

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hello Mubin,

Thank you for reaching out to us.

As per this guide, campaign criterion update should be a supported change 
event. So our team can better assist you, can you share to us the following 
details below?

Customer ID
login-customer-id
complete GAQL
complete logs (request and response with request-id)
Screenshot in the UI showing that campaign criterion update

Please send the requested details via the Reply privately to author option. If 
this option is not available, you may send the details directly to our 
googleadsapi-supp...@google.com alias instead.

Regards,

Mark Kevin Albios
Google Ads API Team
ref:_00D1U1174p._5004Q2QHFa5: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/_2ajd0R1Z4RZ00dmZuE3RMSEKVuHYNgXemXA%40sfdc.net.


Re: Create campaign error

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Greetings!

It appears that you are setting selective optimization on a Display campaign. 
This was never documented as being supported. Setting selective optimization 
was meant for app-based campaigns. There was a recent upgrade in your Google 
Ads account that caused the API to recognize this unexpected request and reject 
the request since it was not formally supported in the first place.

I'm currently chatting with my fellow engineers to see what the next steps are 
for possibly turning selective optimization on for Search and Display campaigns 
even if it was not formally supported before. I'll keep you posted.

Cheers,
Nadine Wang, Google Ads API Team
ref:_00D1U1174p._5004Q2QGtpw: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/Kf8wG0R1YSPQ00BMeV_pvaQMKAHdE3Tmiyug%40sfdc.net.


RE: Upload conversion Error

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hello there,

Thanks for reaching out. An internal_error could be caused when something 
unexpected happened while processing the request due to a temporary issue with 
the API. Please wait 30 seconds and try again.

If the issue persists, could you please provide us with the complete logs 
(request and response with request-id) via the Reply privately to the author 
option.

Regards,

Jakeia Sabrina
Google Ads API Team
ref:_00D1U1174p._5004Q2QHGZG: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/enf4C0R1YR5H00Zp8-Dx_bRnupS4MTjPubBA%40sfdc.net.


Get all customers userLists ID's via Ads Rest API?

2021-11-02 Thread Greg Parks
I'm currently using the Google Ads API's REST interface and see there's a 
method to fetch an individual customer's userList via the following 
endpoint.

GET 
https://googleads.googleapis.com/v8/{resourceName=customers/*/userLists/*}

I'm wondering if there's a similar method to fetch a list of all customer's 
current userLists? I only need their ID's but I'm not seeing anything in 
the documentation. 

I see a method to retrieve all userLists using this Scripts snippet 
. 
Is there a way that I can leverage this script programmatically via a rest 
API request? Unfortunately, the request must be via the Google Ads API's 
REST interface as there currently isn't a Golang client available. 

Any help is greatly appreciated, 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/2bdcb50e-1529-4d81-9ae0-303de28f6c4bn%40googlegroups.com.


Re: Once Demographic Criterion is set it cannot be changed

2021-11-02 Thread Filip Pećanac
Hi Aryeh,

Thanks for the response.

Let me just clarify the situation step by step, so that you can understand 
it better and let me know if I haven't done something properly:

1. I create an adGroup via API (automatically all age ranges are selected)
2. I use negative criterion to exclude one of the ranges, lets say 35 to 44 
- I check it on Google Ads interface and it works fine
3. I try to re-include this age range by simply removing this line *'negative' 
=> true* and then i get the "Immutable field" message
4. I can continue unselecting age ranges with step no2, but when I try to 
include them again i get the same message

So, instead of step 3 what should I do to be able to accomplish this?

Ps. From your previous response I wasn't sure what I was supposed to do, so 
that's why I am back here :)

Regards,
Filip
On Tuesday, November 2, 2021 at 2:12:38 PM UTC+1 adsapi wrote:

> Hi Filip,
>
> Negative 
> 
>  
> is immutable. To switch a criterion from positive to negative, remove then 
> re-add it.
>
> Regards,
>
> [image: Google Logo] 
> Aryeh Baker 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2QHCsx: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/0ecc277b-253f-4ec7-aceb-f60bfa7f0ad7n%40googlegroups.com.


RE: asset_error: The asset has a name which is different from an existing duplicate that represents the same content.

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Arnol,

Thanks for reaching out. Can you please provide us with your complete request 
and response logs so we can have a closer look at the issue?

Thanks,
Matt
Google Ads API Team

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2QHCKH: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/llVIH0R1YN3O00bgf8Cta8TW2LYSZcfemd2A%40sfdc.net.


Re: generateKeywordIdeas - sort

2021-11-02 Thread Oleg Disrupt
Hi Matt,
Thank you for your reply and your honestly support.
So I attached screenshot for sort example.
so in below code, I need to add sort argument for special filed(for example 
top of page id(low range) )
$response = $keywordPlanIdeaServiceClient->generateKeywordIdeas(
[
'language' => ResourceNames::forLanguageConstant($languageId
),
'customerId' => $customerId,
'geoTargetConstants' => $geoTargetConstants,
'keywordPlanNetwork' => KeywordPlanNetwork
::GOOGLE_SEARCH_AND_PARTNERS
] + $requestOptionalArgs
);

Thanks
On Tuesday, November 2, 2021 at 9:39:32 PM UTC+9 adsapi wrote:

> Hi Oleg,
>
> Thanks for reaching out. The GenerateKeywordIdeasRequest does not support 
> a sort method. However, if you can provide us with a bit more information 
> on how the results should be sorted, I can create a feature request on your 
> behalf.
>
> Thanks,
> Matt
> Google Ads API Team
>
> [image: Google Logo] 
> Matt 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2QH9vf: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/3d9913af-3aad-4a42-b2c2-0b3ab91edd03n%40googlegroups.com.


GAQL running on an MCC doesn't show a campaign

2021-11-02 Thread 'EladB' via AdWords API and Google Ads API Forum
Hi,


I've tried to run this GAQL on an MCC, but didn't get any rows.

*ads-script:*

campaignIds query =SELECT customer.id, campaign.resource_name, campaign.name 
FROM 
campaign WHERE campaign.id IN ("123456");
_rowsToMap(accountToCampaignsMap, AdsApp.report(query, REPORTING_OPTIONS));
}

function _rowsToMap(map, response) {
  rows = response.rows();
  while (rows.hasNext()) {
var row = rows.next();
Logger.log(JSON.stringify(row));
...
}

Even though I see it in the UI under this MCC


What am I missing?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/c7401903-8e77-4f93-ac8e-ab7414e24427n%40googlegroups.com.


Re: Testing Private Replies

2021-11-02 Thread 'Cory Liseno' via AdWords API and Google Ads API Forum
test 456

On Friday, September 10, 2021 at 11:49:25 AM UTC-4 adsapi wrote:

> test reply 123
>
> ref:_00D1U1174p._5004Q2MiPqu: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/7a4a0269-f4bd-4591-b3c7-da25be7d740en%40googlegroups.com.


Re: I cannot set selective_optimization to create campaign.

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Tomerpop,

Thank you for chiming in. To ensure that your issue is taken care of, could you 
privately send us a full request and response log of communication with the API 
in which you attempt to create a campaign with selective optimization of a 
conversion action in MCC account leads to this error?

The request and response appears similar to the JSON Mappings in our REST 
documentation. Our client libraries have loggers with logging instructions, to 
see these instructions you can click on the client library you use in the 
sidebar of our client library guide and click on "Logging". Setting the logger 
to 'DEBUG' will get the desired log.

If this isn't your exact error, could you open a new thread so we can address 
your unique issue exlusively?

Regards,

Aryeh Baker
Google Ads API Team
ref:_00D1U1174p._5004Q2QGfbf: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/UR7E00R1YA2K00gxR3FqLxRBO0XHtv7uCgZQ%40sfdc.net.


Re: Missing clicks in geographic_view

2021-11-02 Thread TommyTek
Hello,
  I privately provided the information asked last week, but got no feedback.

Do you have any update for me?

Thank you

On Thursday, October 28, 2021 at 12:19:09 PM UTC+2 adsapi wrote:

> Hi,
>
> Thanks for reaching out to us.
>
> Since you’ve noticed a discrepancy, then for us to investigate further 
> discrepancies between the UI and API, could you please provide us with the 
> following details below?
>  
>
>- For AdWords API report, provide the complete SOAP *request* 
>
> 
>  
>and *response* 
>
> 
>  
>logs generated on your end or the complete *report definition* 
>
> 
>  
>- As for Google Ads API report, you can provide the complete *request* 
>
> 
>  
>and *response* 
>
> 
>  
>logs with *request ID* 
>
> 
>  
>generated on your end 
>- Screenshots from the UI showing those discrepancies 
>- Sample comparison of the AdWords API and Google Ads API report data 
>where we can see the said discrepancies 
>
>
> For the Google Ads API, logging can be enabled by navigating to the *Client 
> libraries > Your client library (ex. Java) > Logging* documentation, 
> which you can access from this *link* 
> .
>
> For the AdWords API, you can enable logging by going to the steps 
> discussed in the respective Github documentation of your chosen *client 
> library* .
>
> You may then send the all the requested information via the *Reply 
> privately to author* option. If this option is not available, you may 
> send the details directly to our googleadsa...@google.com alias instead.
>
> Regards, 
> [image: Google Logo] 
> Yasar 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2QFicX: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/4e04653b-6774-4440-8afd-b1e9499cf474n%40googlegroups.com.


Upload conversion Error

2021-11-02 Thread Andrea Cau
Hi there

I got  INTERNAL_ERRORs as a partial_failure_error, in ConversionUpload 
requests.
It would seem that I got these errors in the requests following a request 
with 502 503 error. (within 3 minutes)

In these cases (when I get a partial failure error)  I don't do any 
retry unlike 500 type errors (there is an immediate retry set)

I think it is a temporary error because when I try again after some hour it 
works so it would make sense to try again

I would like to find out if this is actually expected behavior and what is 
the best way to handle it 

Best Regards
Andrea 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/9c51e7df-656b-48e7-b52d-5057440fb89en%40googlegroups.com.


Mutate Video Campaigns via API

2021-11-02 Thread 'Paul van Putten' via AdWords API and Google Ads API Forum
Hi,

I did some digging in this forum and found this 

 link. 
In the link it says that "video campaigns cannot be mutated at all from the 
API" I was wondering if this is still the case? At my company we want use 
the API to make changes to the Video campaigns. We wanted to do this last 
year as well, but then we found out we couldn't because the API was 
read-only. So I am wondering if now we can now also write with the api or 
if this is still not possible?

If this is not possible, do you have an eta of when it will become possible?

Right now we use Google Ads Scripts, but the API has our preference.

Thanks in advance!

Kind regads,
Paul

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/2b782d0a-f4d1-4ef0-861b-ed5eb2481710n%40googlegroups.com.


Resource change_event does not provide old_resource and new_resource in update operation of CAMPAIGN_CRITERION

2021-11-02 Thread Mubin Abbas
I am working on example (account_management/get_change_details.py) and 
observe that in case of update campaign_criterion, this view provide empty 
changed_fields, old_resource and new_resource values, due to this error I 
am unable to fetch the change information.

Kindly suggest me the solution for this 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/86c8b64a-ef37-45ce-881a-a9297e124c0cn%40googlegroups.com.


RE: Once Demographic Criterion is set it cannot be changed

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Filip,

Negative is immutable. To switch a criterion from positive to negative, remove 
then re-add it.

Regards,

Aryeh Baker
Google Ads API Team
ref:_00D1U1174p._5004Q2QHCsx: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/xz-E00R1Y4OJ00-DFQQUozSAarUezOk-adCw%40sfdc.net.


Re: 技术求助(获取资源位campaign_asset的数据为空)

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi there,

I had to delete your public posts because they contain logs. I received your 
logs sent privately.  Could you privately send a screenshot in English?

Regards,

Aryeh Baker
Google Ads API Team
ref:_00D1U1174p._5004Q2QFvXS: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/FwK6z0R1Y4B200Ns4af1yrRD6G_ukvdn2H9w%40sfdc.net.


RE: remove_all offline operation not processed

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi,

Thanks for reaching out to us.

To remove data from a Customer Match audience list, you may refer to this 
guide. Note that when a remove_all operation is included, it must be the first 
operation in a job. If not, then running the job will return an 
INVALID_OPERATION_ORDER error. If encountering API errors, you may provide us 
with the complete request and response logs with the request-id via the Reply 
privately to author option, so our team can better check.

Also, we recommend that in order to make sure that all data is loaded / updated 
for user lists uploads, you should implement logging. This is because generated 
request and response logs should contain information of your uploads and other 
details that were included, and also the details of either the successful 
request or errors encountered. That said, and if you haven't yet, logging can 
be enabled by navigating to the Client libraries > Your client library (ex. 
PHP) > Logging documentation, which you can access from this link. The said 
logs are also a helpful source of information for troubleshooting conversion 
upload errors, or general API issues.

Regards,

Yasar
Google Ads API Team
ref:_00D1U1174p._5004Q2QGyTe: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/bUetz0R1Y3NU00mR5q_qLpRI6-Jq0aeMWrig%40sfdc.net.


Re: Does Google API supports to configure the daily budget automatically?

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Haiyang,

The Ads API documentation does not have an example that provides budget reset 
logic. However, Ads scripts, which is a separate product from the Ads API, does 
have a boilerplate solution that may be useful.

Regards,
Matt
Google Ads API Team

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2QGs1N: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/usJGV0R1Y3J300iR_3beuJRNKJdCZztdV9Dg%40sfdc.net.


RE: generateKeywordIdeas - sort

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Oleg,

Thanks for reaching out. The GenerateKeywordIdeasRequest does not support a 
sort method. However, if you can provide us with a bit more information on how 
the results should be sorted, I can create a feature request on your behalf.

Thanks,
Matt
Google Ads API Team

Matt
Google Ads API Team
ref:_00D1U1174p._5004Q2QH9vf: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/BCjrQ0R1Y35F009OfGt0ldQo2mWiUmwfx88A%40sfdc.net.


Query for getting all campaign with the given name - Google Ads

2021-11-02 Thread Wayne
Hi team
I'm trying to fetch all the campaigns with a given name using the below 
query:

SearchGoogleAdsRequest request =
SearchGoogleAdsRequest.newBuilder()
.setCustomerId(Long.toString(customerId))
.setPageSize(1_000)
.setQuery(
String.format(
"SELECT campaign_budget.id, campaign_budget.name, "
+ "campaign_budget.resource_name FROM campaign_budget "
+ "WHERE campaign.name = '%s'",
campaignName))
.build();

// Retrieves the budget.
GoogleAdsServiceClient googleAdsServiceClient =
googleAdsClient.getLatestVersion().createGoogleAdsServiceClient();
GoogleAdsServiceClient.SearchPagedResponse searchPagedResponse = 
googleAdsServiceClient.search(request);
System.out
.println(searchPagedResponse.getPage().getResponse().getResults(0).getCampaignBudget());


However, I'm getting the below error:

Headers: Metadata(content-type=application/grpc,request-id=**,date=Tue, 
02 Nov 2021 12:13:04 GMT,alt-svc=h3=":443"; ma=2592000,h3-29=":443"; 
ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; 
ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43")
Body: null
Failure message: errors {
  error_code {
query_error: EXPECTED_REFERENCED_FIELD_IN_SELECT_CLAUSE
  }
  message: "The following field must be present in SELECT clause: 
\'campaign.name\'."
}
request_id: "***"

Status: Status{code=INVALID_ARGUMENT, description=Request contains an 
invalid argument., cause=null}.

I'm using GoogleAds API.
Kindly tell if it is possible to get a campaign with a particular name. 
(NOT resource name - just the campaign name).

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/71762768-5745-4bd7-a104-1792dee14c35n%40googlegroups.com.


Re: Remove duplications in Google Conversions API and Google Analytics

2021-11-02 Thread Bahaa Samoudi
Hi,
I will change the question form: if I upload Click conversion to specific 
conversion Action in google ads using offline conversion (c# code) (you can 
see the code URL in the question above) and there is another 
conversion(with same gclid and same values) coming from other source like 
google analytics, can I take only one conversion and ignore the second to 
prevent duplications, or I need to create two sources in google ads like 
this

[image: capi.PNG]
[image: ana.PNG]
and upload the each conversion in correspond conversion action  

On Tuesday, 2 November 2021 at 08:25:50 UTC+2 adsapi wrote:

> Hi,
>
> Thank you for reaching out to our API support team.
>
> Since this channel and our team specializes in AdWords 
>  / Google 
> Ads  API 
> related concerns only, our team would not be able to provide comments on 
> Google Analytics.
>
> However, in the Google Ads API's perspective, you should be able to 
> perform conversion adjustments by following this guide 
> .
>  
> I hope this helps.
>
> Best regards,
>
> [image: Google Logo] 
> Peter Laurence Napa Oliquino 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2QGisy: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/7c02b8c1-69bf-48fe-9dcb-cd3f7510f53bn%40googlegroups.com.


Re: Sitelink limit exceeded error though not too many sitelinks

2021-11-02 Thread Markus Heiden
Hi Peter,

did you receive my private message with the logs? Is there any progress on 
this issue?

Regards,
Markus
adsapi schrieb am Montag, 25. Oktober 2021 um 03:33:56 UTC+2:

> Hi Markus,
>
> Thank you for your follow up.
>
> Please note that our API team would *need* the complete request 
> 
>  and response 
> 
>  logs, 
> along with the request-id 
> ,
>  in 
> order for us to investigate and troubleshoot the issue with the sitelinks 
> limits.
>
> That said, since you mentioned that the logs are currently turned off, I 
> would recommend that you enable them by navigating to the *Client 
> libraries > Your client library (ex. Java) > Logging* documentation, 
> which you can access from this link 
> , 
> then retry your request to replicate the error. Once available, you may 
> send the details to our team via the *Reply privately to author* option 
> or directly to our googleadsa...@google.com alias.
>
> Best regards,
>
> [image: Google Logo] 
> Peter Laurence Napa Oliquino 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2PKftZ: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/21c60819-010a-4d25-b45c-3ccf7af6d8dfn%40googlegroups.com.


LSA Reporting

2021-11-02 Thread Tiana S.
Hi there,

Quick question: is it possible to report on Local Services Ads/Guaranteed 
Ads) through the Google Ads API?

Thanks in advance!

Tiana

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/386e8788-2f68-429a-b1b5-f10dd8a05d57n%40googlegroups.com.


Re: Create campaign error

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi,

Thank you for providing the requested details privately.

Allow me to discuss the issue to my team to have deeper analysis here. Rest 
assured that we will provide updates when become available.

Regards,

Ernie John Blanca Tacata
Google Ads API Team
ref:_00D1U1174p._5004Q2QGtpw: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/R-m6t0R1XXB000zcCV446mRsyDPbB4Qqut9A%40sfdc.net.


Re: I cannot set selective_optimization to create campaign.

2021-11-02 Thread Tomerpop
Same Here, Please let us know when you find a solution 

On Tuesday, 2 November 2021 at 07:51:03 UTC+2 adsapi wrote:

> Hi Tohihiro,
>
>  
>
> I'm Kevin from the Google Ads API Team. I'll try my best to assist you.
>
>  
>
> Can you please provide a sample screenshot which shows the UI's expected 
> values for the selectiveOptimization field as well as the complete request 
> 
>  and response 
> 
>  logs 
> with request ID 
> 
>  with 
> unredacted IDs so I can better investigate the issue? You can send these 
> to me via *Reply privately to author* option. If this option is not 
> available, please send it to googleadsa...@google.com instead.
>
>  
>
> Regards,
> [image: Google Logo] 
> Kevin Gil Soriano 
> Google Ads API Team 
>   
>
> ref:_00D1U1174p._5004Q2QGfbf: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/24d65393-7544-4c50-a811-2a1fad3ab377n%40googlegroups.com.


Once Demographic Criterion is set it cannot be changed

2021-11-02 Thread Filip Pećanac
Hi,

When I add Demographic AdGroupCriterion via API, lets say exclude all male 
users from targeting, it works fine. For this, i use this code 

.

But later on, once I try to *include* the male population for that Ad Group 
(by removing 'negative'=>true line of code), I receive the following 
message:

*Fatal error*: Uncaught Google\ApiCore\ApiException: { "message": "Request 
contains an invalid argument.", "code": 3, "status": "INVALID_ARGUMENT", 
"details": [ { "@type": 0, "data": 
"type.googleapis.com\/google.ads.googleads.v8.errors.GoogleAdsFailure" }, { 
"@type": 0, "data": [ { "errorCode": { "fieldError": "IMMUTABLE_FIELD" }, 
"message": "The field attempted to be mutated is immutable.", "location": { 
"fieldPathElements": [ { "fieldName": "operations", "index": 0 }, { 
"fieldName": "create" }, { "fieldName": "negative" in 
*/XYZ/google-ads-php/vendor/google/gax/src/ApiException.php* on line *139*

Is there a way to update AdGroupCriterions once they are previously added?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/d2912348-fc21-4f71-b391-7a305bcfda8an%40googlegroups.com.


RE: the display results in a language other than English

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi,

Thank you for posting your concern.

I am afraid that translating the API results in another language is not 
supported in the Google Ads API. With this, you would need to create a 
post-process on your end instead that will translate the result in another 
language.

Let me know if you have further questions.

Regards,

Ernie John Blanca Tacata
Google Ads API Team
ref:_00D1U1174p._5004Q2QGzO2: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/hQBEd0R1XSH300XBLCvkQZRciz7aTynNTcWw%40sfdc.net.


asset_error: The asset has a name which is different from an existing duplicate that represents the same content.

2021-11-02 Thread Amol Kawale
HI Team,

I'm using Google ad V8 API in php. I'm creating Responsive Display Ad but 
am getting following error - 

*Google Ads failure details:*
* asset_error: The asset has a name which is different from an existing 
duplicate that represents the same content.*

I checked images uploaded but not any image repeated but still getting that 
issue. Pls help to fix issue.

Your help is highly appreciated.

Thanks,
Amol

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/67c81caa-b590-47f7-9378-c30325554420n%40googlegroups.com.


RE: searching for a gclid using click_view

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Nimrod,

Thank you for reaching out to our team.

The possible reason why the GCLID was not returned in the API request is 
because the GCLID is not generated on the account where you executed the report 
or the impression are not attributed on the date that you've set in the WHERE 
clause.

However, so that our team can further investigate, could you provide the 
complete request and response logs with request ID and request header generated 
on your end? You can provide it via Reply privately to author option. If this 
option is not available, then send it instead on this email address 
googleadsapi-supp...@google.com.

Regards,

Ernie John Blanca Tacata
Google Ads API Team
ref:_00D1U1174p._5004Q2QGsvZ: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/Ae6kJ0R1XP6J00Wuea-_SDTtymgI8b0BKfEA%40sfdc.net.


Re: TargetCpaMicros vs TargetCpa

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Quan,

I work along with Kevin. Allow me to assist you in this.

With regard to your concern, the error RangeError.TOO_LOW is observed when the 
value is too low than the minimum allowed for the specific field. For us to 
check the behavior that you reported, could you kindly provide the following?

customer ID
complete logs (request and response with request-id)?

Kindly provide it via Reply privately to author option. If this option is not 
available, then send it instead on this email address 
googleadsapi-supp...@google.com and let us know on this thread once sent.

Regards,

Teejay Wennie Pimentel
Google Ads API Team
ref:_00D1U1174p._5004Q2QDquk: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/xpF5j0R1XO5A00rQzfCYzkS6ighi2Lm6OAJQ%40sfdc.net.


RE: asset_link_error when trying to ad image asset to adgroup in google ads api (php)

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Shawn,

Thank you for reaching out to our API support team.

Could you confirm if what you intend to do is use assets in ads? If yes then 
the link you provided should indeed be the appropriate guide.

However, since you appear to be using the AdGroupAssetService, then its typical 
usage is for creating asset based extensions as discussed here.

Best regards,

Peter Laurence Napa Oliquino
Google Ads API Team
ref:_00D1U1174p._5004Q2QGllD: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/pyo0T0R1XMXF005DZ1znyzS8COev2iFd7DyQ%40sfdc.net.


RE: UNEXPECTED_END_OF_QUERY Accessing Google Ads API via Google Apps Script

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi Suchitra,

Thank you for providing further details to your concern.

I can see that you've already sent a private thread to my team for this 
concern. With this, let us continue the discussion of this concern to that 
email thread and provide there the complete request and response logs with 
request ID and request header generated on your end where we can see the error.

Regards,

Ernie John Blanca Tacata
Google Ads API Team
ref:_00D1U1174p._5004Q2QGsl5: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/50huo0R1XM7Q000Rb76u9mQ5C293_0kSzNDQ%40sfdc.net.


RE: Remove duplications in Google Conversions API and Google Analytics

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi,

Thank you for reaching out to our API support team.

Since this channel and our team specializes in AdWords / Google Ads API related 
concerns only, our team would not be able to provide comments on Google 
Analytics.

However, in the Google Ads API's perspective, you should be able to perform 
conversion adjustments by following this guide. I hope this helps.

Best regards,

Peter Laurence Napa Oliquino
Google Ads API Team
ref:_00D1U1174p._5004Q2QGisy: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/vsF520R1XLUI00v4b20NwcTz6TA2NqbqoYjA%40sfdc.net.


Re: Unselecting all product groups from a partition tree fails.

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hello Miquel,

Thanks for getting back to us.

You can share to us the complete SOAP logs (request and response with 
requestId) via the Reply privately to author option. If this option is not 
available, you may send the details directly to our 
googleadsapi-supp...@google.com alias instead.

As an aside, please note that the AdWords API is deprecated and will be sunset 
on April 27, 2022. We strongly recommend that you migrate to the Google Ads API 
as soon as possible.

Regards,

Mark Kevin Albios
Google Ads API Team
ref:_00D1U1174p._5004Q2QFwS4: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/AM2v80R1XKY700UhA0_J_9RzGBp49wzzIoPA%40sfdc.net.


RE: May I ask whether campaigns, ad groups, ads, keywords, etc. run independently in Google ads?

2021-11-02 Thread 'Google Ads API Forum Advisor' via AdWords API and Google Ads API Forum
Hi,

Thank you for reaching out to our API support team.

For confirming the behavior of these entities when the higher level is set to 
paused, and since this is more of a Product related concern, I would recommend 
that you reach out instead to the Google Ads Product Support team, via this 
link, for further guidance.

I hope this helps.

Best regards,

Peter Laurence Napa Oliquino
Google Ads API Team
ref:_00D1U1174p._5004Q2QGaBW: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/2oLhr0R1XKOC00fit8XZHDR_6l2Ad79TgpdQ%40sfdc.net.