Whitelisting BudgetOrderService

2020-06-01 Thread 王麒傑
Hi Support,

I want to whitelist our MCC in order to perform *BudgetOrderService.mutate*.
I've seen related contents in the forum and noticed that I should provide 
manager-id and customer-id.
Please tell me what you need if you need other information to do it.

Another question is that asking online support to whitelist MCC is the only 
way to do? 
Or is there any other way to do that. Like request via Google Ads UI.
Since it is strange to do so by asking the support online to do all these 
things.

Last question is about Google Ads API.
As you may know BudgetOrderService is part of *Google AdWords API*, not the 
latest Google Ads API.
Google Ads API have a similar service called *AccountBudgetProposalService*.
If I want to turn to use this service, is there any limitations? (Like 
whitelisting in advance)

Regards,
Jack Wang.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/d9517bc2-4d3f-4ee1-8e49-dcc4e21b9ca3%40googlegroups.com.


RE: Best way to programmatically "pause" a Campaign location

2020-06-01 Thread Google Ads API Forum Advisor Prod
Hi Jeryl,

Thanks for reaching out. Can you please confirm if you are referring to the 
AdWords API or Google Ads API ? If yes, can you please provide customer id and 
please reply privately to author options while sharing the details.

Let me know if you have any questions.

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


Invalid Grant Using Oauth Refresh Token in a Django Web App/Python Client Library

2020-06-01 Thread Jeff
Hello,

I am putting together a Django web application using the Python client 
library. I would like users to be able to authenticate and then do stuff.

I have built a web flow and it works fine to get the authorization token. I 
then use the auth to get a refresh token as such


### Initiates oauth request
auth_code = request.GET['code'] #Grabs auth code
flow = google_auth_oauthlib.flow.Flow.from_client_secrets_file(
os.path.join(os.path.dirname(os.path.dirname(__file__)),'client_secret.json'
),
scopes=[oauth2.GetAPIScope('adwords')])
flow.redirect_uri = 'http://127.0.0.1:8000/data'
authorization_url, state = flow.authorization_url(
access_type='offline',
include_granted_scopes='true')

refresh_token = flow.fetch_token(code=auth_code)
credentials = flow.credentials

client = google.ads.google_ads.client.GoogleAdsClient(
credentials, developer_token)


Now I want to build a client using the refresh token. I am passing it using 
a dict. The token comes back as a string starting with a number and a / 
followed by a bunch of characters.

I am using the same developer token, client_id and client_secret found in 
the client_secret.json file.

def googleAdsClient(refresh_token, developer_token, client_id, 
client_secret):
   google_credentials = {
   'developer_token': developer_token,
   'refresh_token': refresh_token,
   'client_id': client_id,
   'client_secret': client_secret}
   google_ads_client = 
GoogleAdsClient.load_from_dict(google_credentials)

Every time I try to make this work I get an invalid_grant response.

Am I missing a step or not fully understanding the concept of what I need 
to do to get the client working?

-- 
CONFIDENTIALITY NOTICE: This e-mail and any files transmitted with it are 
confidential and intended solely for the use of the individual or entity to 
whom they are addressed. If you have received this e-mail in error, please 
delete it from your system. Thank you.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f0c37b3f-e357-4b2f-8e4b-e828258f06e1%40googlegroups.com.


Re: Smart campaigns

2020-06-01 Thread Google Ads API Forum Advisor Prod
Hello,

Apologies for the confusion, let me clarify a couple things. Smart Campaigns 
are different from Smart Display Campaigns. Smart Campaigns will return with a 
advertisingChannelType "UNKNOWN" and Smart Display Campaigns will return with a 
advertisingChannelType "DISPLAY". It appears that support for reporting on 
Smart Campaigns specifically is not yet available via API. I will raise a 
feature request for this on your behalf.

Let me know if you have any additional questions.

Regards,
Danica, Google Ads API Team
ref:_00D1U1174p._5004Q1zsHfd: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/7vYv-0QB9JG400UzJaAkOOTe2wgwxfwVMESQ%40sfdc.net.


Re: Criterian keyword

2020-06-01 Thread Google Ads API Forum Advisor Prod
Hi Aarti,

Thanks for reaching out. As i previously mentioned you can use this code 
example here (available different language) filtering by the criterion ID or 
you can use  campaign_criterion / ad_group_criterion report to get keywords 
text using field campaign_criterion.keyword.text/ 
ad_group_criterion.keyword.text.

Let me know if you have any questions.

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


RE: How can I get removed asset 's data

2020-06-01 Thread Google Ads API Forum Advisor Prod
Hi Judy,

Thank you for reaching out. In order for me to take a closer look, can you 
please provide your customerClientId? Kindly "Reply privately to author" when 
providing this information.

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


RE: is it possible to add a new feeditem and a feeditemtarget belonging to it by making a single atomic Google Ads API call?

2020-06-01 Thread Google Ads API Forum Advisor Prod
Hi,

Thank you for reaching out. This can be performed through a batch processing 
operation. Both of those operations are supported in the MutateJobService. You 
can find information on using temporary IDs here. They are necessary when one 
of your operations in your batch job is dependent on a resource being created 
in another operation.

If you are still receiving any errors, please share your complete detailed 
request and response logs via Reply privately to author so I can further 
investigate the issue. You can find information on enabling logging here (set 
log level to DEBUG).

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


RE: Discovery campaign support by Ads API

2020-06-01 Thread Google Ads API Forum Advisor Prod
Hi Denis,

Thank you for reaching out. Discovery campaigns are not currently supported in 
Google Ads API. For a list of campaign types that are supported, you can refer 
to this guide. A feature request has been put in for support for these 
campaigns. For any future updates on this, you may refer to our blog.

Regards,
Danica, Google Ads API Team
ref:_00D1U1174p._5004Q1ztEqo: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/FAgaB0QB9D8Z00s3BvU2uFQo-m5rFfIy8vAA%40sfdc.net.


RE: Get account apps when create App promotion campaign

2020-06-01 Thread Google Ads API Forum Advisor Prod
Hi Duong,

Thank you for reaching out to us. In the UI trying to pull your app should be 
from the Google Play Store, but also from your campaigns as well. You can see 
the instructions of this here.

As for the way to get this from the API, there currently isn't a way to pull a 
list of apps to put into an app campaign. I'll add this request for this 
feature to be added. In the meantime, please follow our blogs for more updates 
on this. Let me know if you have further questions.

Thank you,
Bryan, Google Ads API Team
ref:_00D1U1174p._5004Q1ztLYF: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/thhVO0QB9D2K000qvuLfX-Q-m70l7b6N-nzQ%40sfdc.net.


RE: I am getting Ad Error INVALID_AD_TYPE exception while trying to update shopping and expanded dynamic search ad.

2020-06-01 Thread Google Ads API Forum Advisor Prod
Hi Ankit,

Thank you for reaching out. Please note that not all ad types support 
mutability. Shopping and expanded dynamic search ads do not support this, which 
is why you are receiving the INVALID_AD_TYPE error. For a list of supported ad 
types, you can refer to this guide.

Regards,
Danica, Google Ads API Team
ref:_00D1U1174p._5004Q1ztAwu: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/t4njv0QB9B2K007VWboq9kSO-QPVyPkVEGsg%40sfdc.net.


RE: GetGeoTargetConstant API returns with desired language?

2020-06-01 Thread Google Ads API Forum Advisor Prod
Hi Thuong,

Thank you for reaching out. Unfortunately, this feature is not currently 
available in Google Ads API. I have submitted a feature request on your behalf 
so please keep an eye on our Develop Blog for information on future releases.

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


Re: Asset performance segmented by conversion_action

2020-06-01 Thread Google Ads API Forum Advisor Prod
Hi,

Thank you for providing information. With regards to their concern, the 
ad_group_ad_asset_view does not support the segmentation based on conversion 
actions. A feature request for their concern is already raised internally 
within our team. We do not have a definite timeline on when this feature will 
be supported. Please keep an eye on our blog for more updates. Additionally, 
they could use the asset resource to pull specific asset details which supports 
segmentation based on conversion_action. Let us know if you need any additional 
information.

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


RE: Does AD_PERFORMANCE_REPORT give insights for (SEARCH AND SHOPPING) ads both?

2020-06-01 Thread Ankit Agarwal
Thanks. You have answered my question.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3769a679-5b42-403d-8471-6f811ec47872%40googlegroups.com.


RE: Does AD_PERFORMANCE_REPORT give insights for (SEARCH AND SHOPPING) ads both?

2020-06-01 Thread Google Ads API Forum Advisor Prod
Hi Ankit,

The report includes data for the following ad types which includes search and 
shopping ads. If you have specific details to the insights you are looking for, 
please let me know.

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


Re: How to get keyword search volume using Google Ads

2020-06-01 Thread Google Ads API Forum Advisor Prod
Hi,

Thank you for reaching out. Creating the keyword plan is necessary for 
generating historical metrics as explained here.

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


RE: Custom data feed item performance report

2020-06-01 Thread Google Ads API Forum Advisor Prod
Hi Natha,

Please check whether your feed Id in your WHERE clause has data. However, it 
appears you are using Google Ads Scripts. So if you continue to face issues, 
I'd recommend posting on their forum for assistance.

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


is it possible to add a new feeditem and a feeditemtarget belonging to it by making a single atomic Google Ads API call?

2020-06-01 Thread So
Hi,

I am a .net developer.
I've heard that you can mutate different kinds of related resources by only 
one request, which is a sort of transaction in RDBMS(all or nothing).  
Also I've heart that to do so you've got to give a negative integer to the 
id which you are trying to create.

So, My code is something like below

**
var googleAdsService = 
client.GetService(Google.Ads.GoogleAds.Services.V3.GoogleAdsService);

googleAdsService.Mutate(googleAdsId, new List

{
new MutateOperation
{
FeedItemOperation = new FeedItemOperation
{
Create = new FeedItem {  ResourceName = 
"customers/{customers_id}/feedItems/{feed_id}~-1", ... }
},
new MutateOperation
{
FeedItemTargetOperation = new 
FeedItemTargetOperation
{
Create = new FeedItemTarget { FeedItem = 
"customers/{customers_id}/feedItems/{feed_id}~-1", ... }
}
},
});

**

But, I only get an error saying  something like this : "you do not have the 
permission to do this kind of operation".
I can add a feeditem to a feed by making one request and then add an 
feeditemtarget to it by making another request, but this is not exactly 
what I want to do.
Succeeding in Adding a feeditem and then failing in adding a feeditemtarge 
to it is what I want to avoid the most.

Where am I wrong?
Is there any good idea?

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/6109eed2-8e88-42e0-8135-410cd8a8d73b%40googlegroups.com.


Re: Impr Top % question

2020-06-01 Thread Oksana Sulyma
Thanks Xiaoming for the details in private emailing! This was very helpful 
to know!

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

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ba9633f7-2828-4328-97cc-26bd52571286%40googlegroups.com.


Does AD_PERFORMANCE_REPORT give insights for (SEARCH AND SHOPPING) ads both?

2020-06-01 Thread Ankit Agarwal
HI,

Does AD_PERFORMANCE_REPORT provide insights for both search and shopping 
ads?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/da37c876-19dc-43df-8f96-760cee9f6924%40googlegroups.com.


GetGeoTargetConstant API returns with desired language?

2020-06-01 Thread thuong le
Is there any possible way to pass a language code to the request 
header/body when getting GeoTargetConstant via Google ads api? 
It would be great if the return country name of return geo constant is 
"Deutschland" instead of "Germany" for example.

Thank you and have a nice week ahead,

Regards,
Thuong Le

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/b1c06b4b-f58d-43b3-a59b-ddca90d1639e%40googlegroups.com.


Re: Smart campaigns

2020-06-01 Thread Владимир Ярцев
I see in this docs that "Set the advertisingChannelType to DISPLAY". So, 
Smart Campaign should have advertisingChannelType 

 "DISPLAY"? 
But why we get "UNKNOWN" in advertisingChannelType 

 when 
get info about thus campaign?

четверг, 28 мая 2020 г., 21:56:46 UTC+3 пользователь adsapiforumadvisor 
написал:
>
> Hello,
>
> You can refer to this guide on Smart Display Campaigns 
> .
>  
> To get statistics on these campaigns, you may refer to thee Reporting 
> 
>  section 
> of the guide. For code samples on basic operations that can be done on 
> campaigns, you can refer here 
> 
> . 
>
> Let me know if you have any additional questions.
>
> Regards,
> Danica, Google Ads API Team
>
> ref:_00D1U1174p._5004Q1zsHfd: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/436413ea-e565-43a2-96b5-09f7fecc914a%40googlegroups.com.


Get account apps when create App promotion campaign

2020-06-01 Thread duong xuan toi
Hi,

When I create App promotion campaign on UI.
In "Look up your app" it suggest some account apps like this image:

[image: Screen Shot 2020-06-01 at 17.05.22.png]

Are this apps belong to app campaigns or app conversions ?
Is any way to get it via API ?

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

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"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/a0758639-30aa-4bcc-879e-bb61b462264d%40googlegroups.com.


Re: How to get keyword search volume using Google Ads

2020-06-01 Thread 朱志青
Is there a free way to get search volume for a particular keyword, since 
your method(" this guide 
"
 
below) should create a plan first, and we have a limit to create a plan

On Thursday, April 16, 2020 at 9:58:31 PM UTC+8, adsapiforumadvisor wrote:
>
> Hi Marcos,
>
> Thank you for reaching out. If you're interested in retrieving historical 
> metrics for a specific keyword, you can follow this guide 
> .
>  
> If you're interested in forecasting metrics for a specific keyword, you can 
> follow this guide 
> 
> .
>
> Regards,
> Mitchell
> Google Ads API Team
>
> ref:_00D1U1174p._5001UZYMEL: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/4d8211a3-3c68-4b31-a3af-3542a6d2a6a5%40googlegroups.com.