Upgrade api access to standard

2024-01-24 Thread M B
Hi, I have just applied for api standard access of Google Ads Manager 
Account (MCC) ID 
322-000-6497. Plz help to approve the application. 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e9cd-7d88-42d6-8db3-9ea8a5603658n%40googlegroups.com.


Re: google ads api calls with bubble.io

2024-01-24 Thread No Code
Thank you very much, I'm reviewing it and setting up calls in Bubble.io. 

I will let you know any new questions related to the topic.

El miércoles, 17 de enero de 2024 a las 5:52:43 UTC-6, Google Ads API Forum 
Advisor escribió:

> Hi,
>
> Thank you for reaching out to the Google Ads API support team.
>
> Please find the answers for your questions below: 
>
>1. You can use this endpoint Method: customers.googleAds.searchStream 
>
> 
>  
>to retrieve data about campaigns via the Google Ads API.  
>
>
>- Here's an example query to retrieve all campaign IDs and names for a 
>specific customer: 
>
>
>SELECT campaign.id, campaign.name
>FROM campaign
>WHERE customer.id = 'YOUR_CUSTOMER_ID'
>
>- You can specify the customer ID to target specific accounts and 
>select the desired campaign fields you want to retrieve (e.g., campaign 
>ID, name, status, budget). Also, you can use our Google Ads Query 
>Builder 
> for 
>a campaign resource that helps build your query to retrieve the specific 
>information you need. 
>
>   2. First, use the  List Accessible Customers 
> 
>  
> method to get the list of accounts associated with a manager account. You 
> may alsocheck this API documentation 
> 
>  for 
> more information.  
>
>- Then, specify each customer ID and call the Method: 
>customers.googleAds.searchStream 
>
> 
>  method 
>with the desired query targeting that specific customer.  
>
>  3. You can obtain a list of campaigns by date range using the below 
> sample query:  
>
>
> SELECT campaign.id, campaign.name, campaign.status
> FROM campaign
> WHERE segments.date DURING LAST_30_DAYS
>
>  Check this Date Ranges 
>  
> documentation to know about how to specify the date range. Then use the 
> search method endpoint to   retrieve the data.
>  
> 4. You can use this search_term_view 
>  
> resource to build the query then use this endpoint Method: 
> customers.googleAds.searchStream 
> 
>  
> to retrieve the search term of a campaign.
>
> Additionally, I would suggest you to refer to this Query Cookbook 
> , this 
> guide provides a set of Google Ads Query Language queries that demonstrate 
> how to return the same data as screens in the Google Ads UI
>
> If you still have any queries/concerns related to this, you can get back 
> to us.
>
>   
> This message is in relation to case "ref:!00D1U01174p.!5004Q02rX2AQ:ref"
>
> Thanks,
>   
> [image: Google Logo] Google Ads API Team 
>   
>  
>
>
>

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

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


Re: how to set campaign targeting_setting with python google-ads library

2024-01-24 Thread Shawn Hsiao
Hi,

Thanks for the response. 

I would like to clarify what I want to achieve is to *create* campaign and 
setup targeting_setting simultaneously. The official docs 
 state 
that target_setting should be a valid column of campaign.
In that case, there should be no existing targeting settings, does it means 
that I could not setup targeting_setting upon creation?

Since the reference docs 

 you 
provided I believe is more likely for *updating* existing target settings, 
could you provide code example for *creation* as a reference.
Thanks in advance.

On Wednesday, January 24, 2024 at 7:49:41 PM UTC+8 Google Ads API Forum 
Advisor wrote:

> Hi,
>
> Thank you for reaching out to the Google Ads API support team.
>
> By reviewing your concern, I understand that you have a query on how to 
> set campaign targeting_setting with python google-ads library.
>
> I would like to inform you that when you update the targeting settings, 
> you must specify an exhaustive list of all targeting settings you want; 
> there is no way to just specify a single new targeting setting. To do this, 
> you must first fetch the existing list of targeting settings before you 
> attempt your update, and make sure you include all the existing ones along 
> with the new one you want to add. Kindly refer to the sample example 
> TargetingSettings 
> 
>  
> to get more information. 
>   
> This message is in relation to case "ref:!00D1U01174p.!5004Q02rYNrx:ref"
>
> Thanks,
>   
> [image: Google Logo] Google Ads API Team 
>
>
>

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

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/878786e3-5803-45a1-90cb-8c06e922ec8bn%40googlegroups.com.


Re: v15 upgrade throw user_permission_denied error

2024-01-24 Thread Manish Jain
Have tried it, but still same error.
Also tried to connect with client library support. and updated the latest 
version of library.
LINK: https://github.com/googleads/google-ads-php/issues/990

But still getting same issue, Is that possible to upgrade account level? or 
something else in code? to fix this issue.




On Wednesday, January 24, 2024 at 9:35:17 PM UTC+5:30 Google Ads API Forum 
Advisor wrote:

> Hi, 
>
> Thank you for reaching out to the Google Ads API support team.
>
> By reviewing your concern, I understand that you're facing a 
> USER_PERMISSION_DENIED 
> 
>  error. 
> This means the user doesn't have permission to access the customer. 
> According to the documentation 
> ,
>  
> if you're accessing the customer please specify the login-customer-id as 
> the manager account ID without hyphens (-). Client libraries have built in 
> support for this.
>
> If still the issue persists, could you please provide us with the complete 
> API logs (*request* 
> 
>  and  
> 
> *response* 
> 
>  with  
> 
> *request-id* 
> 
>  and  
> *request
>  
> header* 
> )
>  
> generated at your end to assist you further. Kindly note that error logs 
> are not sufficient to investigate your issue.
>
> If you are using a client library and haven't enabled the logging yet, I 
> would request you to enable logging for the specific client library that 
> you are using. You can refer to the guides* Java* 
> 
> ,  
> 
> *.Net* 
> 
> ,  
> 
> *PHP* 
> 
> ,  
> 
> *Python* 
> 
> ,  
> 
> *Ruby* 
> 
>  or  
> 
> *Perl* 
>  
> to 
> enable logging at your end. For REST interface requests, you can enable 
> logging via the curl command by using the -i flag.
>
>   
> This message is in relation to case "ref:!00D1U01174p.!5004Q02rYS7v:ref"
>
> Thanks,
>   
> [image: Google Logo] Google Ads API Team 
>
>
>

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

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


Re: is there a transactions (conversions by transaction id) report via the api?

2024-01-24 Thread charlesb...@gmail.com
Hi,

Consider it ignored!

Although I should add: the data isn't available in the UI.

Thanks

On Wednesday 24 January 2024 at 12:49:24 UTC-6 Google Ads API Forum Advisor 
wrote:

> Hi,
>
> Please ignore my previous response.
>
>
> Thank you for reaching out to the Google Ads API support team.
>
> After reviewing your concern, I understand that you are looking for a 
> report containing all conversions (transactions) at the conversion level. I 
> would recommend you refer to this help center article on all conversions 
> 
>  for 
> more information related to your concern.
>
> In order to assist you further, could you please provide us with the 
> uncropped UI screenshot of the fields which you want to retrieve? Also 
> could you please confirm whether you want to generate a report through 
> Google Ads UI or Google Ads API?
>
> You can send the details via *Reply privately to the author option*, or 
> *direct 
> private reply* to this email.
>
>   
> This message is in relation to case "ref:!00D1U01174p.!5004Q02rYSF5:ref"
>
> Thanks,
>   
> [image: Google Logo] Google Ads API Team 
>
>
>

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

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


RE: is there a transactions (conversions by transaction id) report via the api?

2024-01-24 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for reaching out to the Google Ads API support team.

After reviewing your concern, I understand that you are looking for a report 
containing all conversions (transactions) at the conversion level. I would 
recommend you refer to this help center article on all conversions for more 
information related to your concern.

In order to assist you further, could you please provide us with the uncropped 
UI screenshot of the fields which you want to retrieve? Also could you please 
confirm whether you want to generate a report through Google Ads UI or Google 
Ads API?
This message is in relation to case "ref:!00D1U01174p.!5004Q02rYSF5:ref"

Thanks,

Google Ads API Team

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

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


API Key

2024-01-24 Thread Social CSEconsulting
I have received a notice from my cybersecurity insurance that a google API 
key was flagged, I have no idea what this means other then it tells me to 
regenerate new key. I have been trying to get ahold of google ads and to do 
avail. Is this some thing i need to worry about or hit skip on report

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

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


RE: v15 upgrade throw user_permission_denied error

2024-01-24 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for reaching out to the Google Ads API support team.

By reviewing your concern, I understand that you're facing a 
USER_PERMISSION_DENIED error. This means the user doesn't have permission to 
access the customer. According to the documentation, if you're accessing the 
customer please specify the login-customer-id as the manager account ID without 
hyphens (-). Client libraries have built in support for this.

If still the issue persists, could you please provide us with the complete API 
logs (request and response with request-id and request header) generated at 
your end to assist you further. Kindly note that error logs are not sufficient 
to investigate your issue.

If you are using a client library and haven't enabled the logging yet, I would 
request you to enable logging for the specific client library that you are 
using. You can refer to the guides Java, .Net, PHP, Python, Ruby or Perl to 
enable logging at your end. For REST interface requests, you can enable logging 
via the curl command by using the -i flag.

This message is in relation to case "ref:!00D1U01174p.!5004Q02rYS7v:ref"

Thanks,

Google Ads API Team

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

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


Is there a transactions (conversions by transaction ID) report via the API?

2024-01-24 Thread charlesb...@gmail.com
Hi,

I'm looking for a report containing all conversions (transactions) at the 
conversion level. I can't find anything in the docs but thought I'd check.

That or a way to track them going forward.

Thanks,

Charles

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

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


Google Ads REST API Enhanced Conversions

2024-01-24 Thread Jon
When submitting enhanced conversions via upload click conversions I get the 
api error below:

Can this be turned on in the Google Ads Admin panel as shown below? Does it 
matter whether I choose Google Tag Manager or gtag? Is there a delay after 
enabling this?

"Make sure you've turned on enhanced conversions for leads in conversion 
settings and try again. You can check your setting by querying 
conversion_tracking_setting.enhanced_conversions_for_leads_enabled on 
Customer., at conversions[0].user_identifiers"



-- 
*This message and any attachments contain information, which may be 
confidential and/or privileged, and is intended for use only by the 
intended recipient, any review; copying, distribution or use of this 
transmission is strictly prohibited. If you have received this transmission 
in error, please (i) notify the sender immediately and (ii) destroy all 
copies of this message.*

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

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


V15 upgrade throw USER_PERMISSION_DENIED error

2024-01-24 Thread Manish Jain
The main issue is happening with me, as things are working normal to get 
spent per account with V13 and V14 but after upgrading API to V15 via,  
composer 
require googleads/google-ads-php:21.1 then I started getting this issue.

get ApiException was thrown with message '{ "message": "The caller does not 
have permission", "code": 7, "status": "PERMISSION_DENIED", "details": [ { 
"@type": 
"type.googleapis.com\/google.ads.googleads.v15.errors.GoogleAdsFailure", 
"errors": [ { "errorCode": { "authorizationError": "USER_PERMISSION_DENIED" 
}, "message": "User doesn't have permission to access customer. Note: If 
you're accessing a client customer, the manager's customer id must be set 
in the 'login-customer-id' header. See 
https:\/\/developers.google.com\/google-ads\/api\/docs\/concepts\/call-structure#cid"
 
} ], "requestId": "UAo0n2LRjzMd8HJjKdc4rw" } ] }'.

Wondering , how it can get fix, or what changes I need to make,
I have gone through the documents 
https://developers.google.com/google-ads/api/docs/concepts/call-structure#cid
 

But it is unclear how to pass it in which file or API.

any Idea what to do next?

I am using https://github.com/googleads/google-ads-php and upgraded it on 
21.1
from 19.2

Thanks
Manish J

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

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


Re: i did not receive the developer token for three weeks

2024-01-24 Thread Candela Vaccari
Hello, I am sending you the information I have. They did not give me the 
case ID when I finished sending the form nor did they send it to me by 
email.


ads account ID: 972-025-3246
Access type: Basic Access

El martes, 23 de enero de 2024 a las 15:18:36 UTC-3, Google Ads API Forum 
Advisor escribió:

> Hi,
>
> Thank you for reaching out to the Google Ads API support team.
>
> After reviewing your concern, I understand that your issue is that you 
> applied for API - Basic Access, but you have not received any response. 
> Since the access requests are handled by the Google Ads API Compliance 
> team, we are transferring the case to the Ads API Compliance team. Can you 
> kindly provide the following information for the compliance team to further 
> assist you with your concern: 
>
>- Case ID generated from the compliance team in the format 
>0-0###0 (if there is any generated) 
>
> @Compliance team, please confirm if you are able to assist in the below 
> access request.
> Summary: The user has applied for API access with the below details. 
>
>- Google Ads Manager Account (MCC) ID: requested 
>- Cases ID: requested 
>- Access type: Basic Access 
>
> Do reach out to the Google Ads API support team 
> , for any 
> queries related to the API. You can send the details via Reply privately to 
> the author option, or direct private reply to this email.
>   
> This message is in relation to case "ref:!00D1U01174p.!5004Q02rYFxu:ref"
>
> Thanks,
>   
> [image: Google Logo] Google Ads API Team 
>
>  
>
>

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

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


RE: search ads 360 reporting - saved columns

2024-01-24 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for contacting the Google Ads API support team.

After reviewing your query, I understand that you are trying to migrate from 
the old search ads 360 api to new Search Ads 360 Reporting API.

Kindly note that the mentioned concerns are out of scope for the Google Ads API 
support team as our team specializes in Google Ads API related concerns and 
technical implementations only. I would suggest you reach out to the Search Ads 
360 API team as they are better equipped to assist you on this.
This message is in relation to case "ref:!00D1U01174p.!5004Q02rYP5B:ref"

Thanks,

Google Ads API Team

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

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


Ad strength in GAds API different than GAds UI

2024-01-24 Thread 'Alex Santana' via Google Ads API and AdWords API Forum
Hi,

I am using an testing account to check some GAds API capabilities and found 
that the ad strength returned by the API is different than what the API 
shows.
Also, the API always return a PENDING strength.

This is pretty much the same issue discussed in these two conversations:
Here: https://groups.google.com/g/adwords-api/c/9jHR6-2dxNA/m/lvWGm6GBAgAJ
and here: 
https://groups.google.com/g/adwords-api/c/e0QOXF5aMPE/m/MZRmGMZcFQAJ

But I cannot get a solution from there.
Could some one please help me understand how to obtain the same strength as 
the Gads UI?

My query to GoogleAdsService is similar to what we have in the API 
documentation:
query = f"""
SELECT
ad_group.id,
ad_group.name,
ad_group.status,
ad_group_ad.ad.id,
ad_group_ad.ad.responsive_search_ad.headlines,
ad_group_ad.ad.responsive_search_ad.descriptions,
ad_group_ad.status,
ad_group_ad.ad_strength
FROM
ad_group_ad
WHERE
ad_group.id = {ad_group_id}
AND ad_group_ad.ad.id = {ad_id}
"""
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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d7bf97c6-ecb7-4cf5-b76f-7a04530ad71fn%40googlegroups.com.


Waiting for basic access, three weeks and still nothing

2024-01-24 Thread Alexandre Vieira
Hello

I've requested the Basic access for the google Adwords API in the beginning 
of january, and still nothing, not even a response.

Manager account ID: 621-900-0501
We applied for "Basic access" level.
We don't have any new "case ID" I am aware of

Thank you.

Best regards,
Alexandre Vieira
Bantage Team.

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

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/929ed73f-19e4-4d7c-8a9e-1b2e3f36bf97n%40googlegroups.com.


Search Ads 360 Reporting - Saved Columns

2024-01-24 Thread asad mhagne
Hi, 
I'm trying to migrate from the old search ads 360 api to the new Search Ads 
360 Reporting API.
I'm using java SDK.

In the old API I used to add the saved columns by *setSavedColumnName*
reportColumn = new ReportApiColumnSpec(); 
reportColumn.setSavedColumnName(savedColumn);

While trying to maintain the same reports as I had before I want to add 
these saved columns, but there is no specific documentation or example how 
to make it.
I managed to use it for regular columns query successfully, but had no luck 
do the same for these saved columns.

If this is wrong place to ask these question can you please refer me to the 
correct one.

Thanks,
Asa'd


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

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9395ca7d-38b7-488f-8364-7fff126cbf9en%40googlegroups.com.


About rate limits when using the same development token for Google Ads API and Google Conversion API

2024-01-24 Thread 藤原陽平
Hello.

I'm planning to use both Google Ads API and Mobile Apps Conversion Tracking 
API using the same development token.

What I call the Mobile Apps Conversion Tracking API is the API described in 
the following document: 
https://developers.google.com/app-conversion-tracking/api

I know that the Google Ads API has a rate limit and that you can use up to 
15,000 operations per day if your access level is Basic access.

In addition, I can't find any documentation on rate limits for the Mobile 
Apps Conversion Tracking API.

Is it possible to have 15,000 operations per day with the Google Ads API 
using the same tokens? Is it possible to operate the Mobile Apps Conversion 
Tracking API separately from that limit?

-- 

-
もし、このメッセージが誤って貴殿に送信されたと思われる場合には、
機密情報を含んでいる可能性もありますので、どなたにも転送せず、
付属したファイルも含めて削除していただくとともに、発信者にその旨を
お伝えいただきますようお願いいたします。
This email may be 
confidential or privileged.
If you received this communication
by mistake, 
please don't forward it to anyone else,
please erase all copies and 
documents,
and please let me know that it went to the wrong person.
Thank 
you very much.
-

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

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


RE: awaiting answer for ads api developer token request

2024-01-24 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for reaching out to the Google Ads API support team.

After reviewing your concern, I understand that you have applied for basic 
access for the developer token and haven't received a response.

Since the access requests are handled by the Google Ads API Compliance team, we 
are transferring the case to the Ads API Compliance team.

@Compliance team, please confirm if you are able to assist in the below access 
request.

Summary:
The user has applied for basic access with the below details.

Google Ads Manager Account (MCC) ID:  157-491-7782.

Do reach out to the Google Ads API support team for any queries related to the 
API.
This message is in relation to case "ref:!00D1U01174p.!5004Q02rYNfU:ref"

Thanks,

Google Ads API Team

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

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


RE: how to set campaign targeting_setting with python google-ads library

2024-01-24 Thread 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
Hi,

Thank you for reaching out to the Google Ads API support team.

By reviewing your concern, I understand that you have a query on how to set 
campaign targeting_setting with python google-ads library.

I would like to inform you that when you update the targeting settings, you 
must specify an exhaustive list of all targeting settings you want; there is no 
way to just specify a single new targeting setting. To do this, you must first 
fetch the existing list of targeting settings before you attempt your update, 
and make sure you include all the existing ones along with the new one you want 
to add. Kindly refer to the sample example TargetingSettings to get more 
information.
This message is in relation to case "ref:!00D1U01174p.!5004Q02rYNrx:ref"

Thanks,

Google Ads API Team

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

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


Awaiting answer for Ads API developer token request

2024-01-24 Thread Admin JaySearch
Hello!

We submitted an application for Google Ads API Token (Basic Access) in 
about 2 weeks ago and did not received any update yet. We also submitted an 
update request and still no reply. Is it possible to receive an update on 
the application from the *Google Ads API Compliance team*?

Manager Account ID: 157-491-7782
We applied for "Basic Access" level.
We don't have any "case ID" I am aware of.


Thank you. 

Best Regards,
Nikita Vaniasin
JaySearch Team

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

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


How to set campaign targeting_setting with python google-ads library

2024-01-24 Thread Shawn Hsiao
Hello,

I was using the below code to try to modify campaign.targeting_setting but 
failed,
and I could not find examples of using google-ads python library to achieve 
this.  
Could you suggest valid ways to achieve this? Thanks in advance.

*error messages:*

[2024-01-24 15:32:03,881 - INFO] Request
---
Method: /google.ads.googleads.v14.services.CampaignService/MutateCampaigns
Host: googleads.googleapis.com
Headers: {
  "developer-token": "REDACTED",
  "login-customer-id": "7852354852",
  "x-goog-api-client": "gl-python/3.8.13 grpc/1.60.0 gax/2.15.0 gccl/23.0.0 
pb/4.25.2",
  "x-goog-request-params": "customer_id=5692452448"
}
Request: customer_id: "5692452448"
operations {
  create {
name: "Campaign-test-c920b589a770452b81097b38c8341799"
status: PAUSED
advertising_channel_type: DISPLAY
targeting_setting {
  target_restrictions {
targeting_dimension: TOPIC
bid_only: true
  }
}
campaign_budget: "customers/5692452448/campaignBudgets/13318508559"
manual_cpc {
  enhanced_cpc_enabled: true
}
  }
}


Response
---
Headers: {
  "google.ads.googleads.v14.errors.googleadsfailure-bin": 
"\n\u0002\n\u0003\u0003\u0005\u0012\u0001The supplied TargetingSetting 
contains an invalid CriterionTypeGroup. See CriterionTypeGroup 
documentation for CriterionTypeGroups allowed in Campaign or AdGroup 
TargetingSettings.\u001a\n*\bVERTICAL\"_\u0012\u000e\n\noperations\u0018\u\u0012\b\n\u0006create\u0012\u0013\n\u0011targeting_setting\u0012\u0017\n\u0013target_restrictions\u0018\u\u0012\u0015\n\u0013targeting_dimension\u0012\u0016GFK9JfBHlKKgx814MqWfOQ",
  "grpc-status-details-bin": "\b\u0003\u0012%Request contains an invalid 
argument.\u001a\u0003\nDtype.googleapis.com/google.ads.googleads.v14.errors.GoogleAdsFailure\u0012\u0002\n\u0002\n\u0003\u0003\u0005\u0012\u0001The
 
supplied TargetingSetting contains an invalid CriterionTypeGroup. See 
CriterionTypeGroup documentation for CriterionTypeGroups allowed in 
Campaign or AdGroup 
TargetingSettings.\u001a\n*\bVERTICAL\"_\u0012\u000e\n\noperations\u0018\u\u0012\b\n\u0006create\u0012\u0013\n\u0011targeting_setting\u0012\u0017\n\u0013target_restrictions\u0018\u\u0012\u0015\n\u0013targeting_dimension\u0012\u0016GFK9JfBHlKKgx814MqWfOQ",
  "request-id": "GFK9JfBHlKKgx814MqWfOQ"
}
Fault: errors {
  error_code {
setting_error: TARGETING_SETTING_CONTAINS_INVALID_CRITERION_TYPE_GROUP
  }
  message: "The supplied TargetingSetting contains an invalid 
CriterionTypeGroup. See CriterionTypeGroup documentation for 
CriterionTypeGroups allowed in Campaign or AdGroup TargetingSettings."
  trigger {
string_value: "VERTICAL"
  }
  location {
field_path_elements {
  field_name: "operations"
  index: 0
}
field_path_elements {
  field_name: "create"
}
field_path_elements {
  field_name: "targeting_setting"
}
field_path_elements {
  field_name: "target_restrictions"
  index: 0
}
field_path_elements {
  field_name: "targeting_dimension"
}
  }
}
request_id: "GFK9JfBHlKKgx814MqWfOQ"

=

my code:

def create_campaign(client, customer_id: str, campaign_budget: str, 
targeting_setting: str) -> dict:
"""given customer id, campagin_budget (resource_name), create a campaign 
and return campaign info as dict"""

campaign_service = client.get_service("CampaignService")

campaign_operation = client.get_type("CampaignOperation")
campaign = campaign_operation.create
# create a campaign with Google GDN
campaign.name = f"Campaign-test-{uuid4().hex}"
campaign.advertising_channel_type = client.enums.AdvertisingChannelTypeEnum.
DISPLAY
campaign.status = client.enums.CampaignStatusEnum.PAUSED
campaign.manual_cpc.enhanced_cpc_enabled = True
campaign.campaign_budget = campaign_budget

# set targeting setting
targeting_setting = client.get_type("TargetingSetting")
restriction = client.get_type("TargetRestriction")
restriction.bid_only = True

restriction.targeting_dimension = client.enums.TargetingDimensionEnum.TOPIC
restriction.targeting_dimension.path = "Pets & Animals"
restriction.targeting_dimension.topic_constant = "/Pets & Animals/Animal 
Products & Services/Pet Food & Pet Care Supplies" # ref: 
https://developers.google.com/google-ads/api/data/verticals
targeting_setting.target_restrictions.append(restriction)

campaign.targeting_setting = targeting_setting
campaign_response = campaign_service.mutate_campaigns(customer_id=customer_id, 
operations=[campaign_operation])

return {
"customer_id": customer_id,
"campaign_id": campaign_response.results[0].resource_name.split("/")[-1],
"campaign_name": campaign.name,
"campaign_status": campaign.status,
"campaign_budget": campaign_budget,
"campagin_targeting_setting": targeting_setting,
}




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

You received this message because you are