Re: Google Ads API Beta Python - Query a keyword's quality score and conversion rate

2020-05-19 Thread 'Ky Nguyen' via AdWords API and Google Ads API Forum
Hi Bryan,

Wanted to follow up on this resource. I just wanted to double check that 
it's behaving as I'm expecting it to with the query:
'SELECT ad_group.id, '
   'ad_group_criterion.criterion_id, '
   'ad_group_criterion.keyword.text, '
   'metrics.conversions_from_interactions_rate, '
   'ad_group_criterion.quality_info.quality_score '
  'FROM keyword_view '
 'WHERE ad_group_criterion.type = KEYWORD '
   'AND ad_group_criterion.status = ENABLED '


Would ad_group_criterion.quality_info.quality_score.value and 
metrics.conversions_from_interactions_rate.value always return 0 if the 
keyword hasn't shown any conversion? In the Ads UI, quality score is shown 
as a dash indicating no value while conversion rate shows 0%, so I just 
wanted to confirm that it will always return 0.

Thank you!


On Monday, May 18, 2020 at 1:22:52 PM UTC-7, adsapiforumadvisor wrote:
>
> Hi Ky,
>
> I've taken a look and can see that Keywords Reports has a Quality Score 
> field, and to retrieve it, you need to query 
> ad_group_criterion.quality_info.quality_score 
> .
>  
> For your convenience, if you're having trouble writing the query, you can 
> use this interactive query builder 
> 
>  
> at your convenience. Let me know if you have further questions.
>
> Thank you,
> Bryan, Google Ads API Team 
>
> ref:_00D1U1174p._5004Q1zpic2: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/a911c7b6-2f20-477f-b152-07fe709314e3%40googlegroups.com.


Re: Google Ads API Beta Python - Query a keyword's quality score and conversion rate

2020-05-18 Thread 'Ky Nguyen' via AdWords API and Google Ads API Forum
Thanks so much, Bryan!

On Monday, May 18, 2020 at 1:22:52 PM UTC-7, adsapiforumadvisor wrote:
>
> Hi Ky,
>
> I've taken a look and can see that Keywords Reports has a Quality Score 
> field, and to retrieve it, you need to query 
> ad_group_criterion.quality_info.quality_score 
> .
>  
> For your convenience, if you're having trouble writing the query, you can 
> use this interactive query builder 
> 
>  
> at your convenience. Let me know if you have further questions.
>
> Thank you,
> Bryan, Google Ads API Team 
>
> ref:_00D1U1174p._5004Q1zpic2: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/71cbb6d4-4b68-40e6-9c29-335536f8ff82%40googlegroups.com.


Google Ads API Beta Python - Query a keyword's quality score and conversion rate

2020-05-15 Thread 'Ky Nguyen' via AdWords API and Google Ads API Forum
Hi, I'm currently trying to retrieve a keyword's quality score and or 
conversion rate and was wondering if there was a specific resource I can 
query.

Thank you,
Ky

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/1f167fed-f00d-4a3c-b59e-f11b0aed870b%40googlegroups.com.


Pause keyword using Ads API Beta w/ Python

2020-04-14 Thread 'Ky Nguyen' via AdWords API and Google Ads API Forum
I'd like to programmatically pause some keywords within an ad group. I was 
only able to find how to remove a keyword. 
 
After 
looking at the AdGroupCriterionOperation proto file 
,
 
there does not appear to be a "Pause" field. Is there a different operation 
type that I should use? 

Thanks,
Ky

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/b4ffb987-ca4d-45aa-97c4-e42d0a684391%40googlegroups.com.


Re: REST endpoint for customer_client as an alternative to listAccessibleCustomers

2019-11-11 Thread 'Ky Nguyen' via AdWords API and Google Ads API Forum
Thanks for the help so far, Devin! 

As a follow up, is there also an endpoint that I could make a request to 
that returns a Customer ID that I could then pass to the customer_client 
call? Or is the best solution to make a request to List Accessible 
Customers, and from the returned list of accounts, pass all of those 
accounts to customer clients to get the entire account hierarchy for those 
individual accounts?

Thank you,
Ky

On Monday, November 11, 2019 at 7:48:01 AM UTC-8, adsapiforumadvisor wrote:
>
> Hi Ky, this feature request was actually recently completed and is 
> available for use. In order to accomplish your goal, make a POST request 
> against the search endpoint (/v2/customers/{customer_id}/googleAds:search). 
> You should structure your query to make a request against the 
> customer_client 
>  
> resource. For example, your query might look something like this:
>
> *SELECT customer_client.client_customer, customer_client.resource_name, 
> customer_client.id  FROM customer_client*
>
> The result will be a flattened list of all of the accounts in the account 
> hierarchy.
>
> All the best,
> Devin
> The Google Ads API Team
>
>  
>
> ref:_00D1U1174p._5001UMWUzl: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/bb374c3b-ae27-4e55-82a6-c82c5d20a1de%40googlegroups.com.


Re: REST endpoint for customer_client as an alternative to listAccessibleCustomers

2019-11-07 Thread 'Ky Nguyen' via AdWords API and Google Ads API Forum
Seems I've accidentally replied privately. As a follow-up, is there a 
tracking buganizer for this feature request? Or can we (Google Ad Grants) 
open a bug for this? We'd love to stay up to date on any progress made for 
this feature. Thanks!

On Thursday, November 7, 2019 at 9:27:27 AM UTC-8, adsapiforumadvisor wrote:
>
> Hello,
>
> Thank you for writing to us regarding your concern. It is only possible to 
> get the account hierarchy using the customer_client 
>  
> resource via API. Unfortunately, we do not have any service in Google Ads 
> API that you could use to get the account hierarchy by making a call from 
> your App Scripts. However, great news is that, the feature request for your 
> concern is already raised within our team. Please keep an eye on our blog 
> post 
> 
>  
> for future updates and announcements.
>
> Regards,
> Nikisha Patel, Google Ads API Team
>
>
> ref:_00D1U1174p._5001UMWUzl: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/9b7f1a21-bcad-471e-95d6-bb8f1a1620da%40googlegroups.com.


REST endpoint for customer_client as an alternative to listAccessibleCustomers

2019-11-06 Thread 'Ky Nguyen' via AdWords API and Google Ads API Forum
I'm currently working within App Script (no client libraries) that requires 
me to use the new Google Ads API to fetch all accounts within a customer's 
hierarchy upon authenticating via OAuth2. My current implementation uses 
the listAccessibleCustomers endpoint 
https://googleads.googleapis.com/v1/customers:listAccessibleCustomers but 
this of course only returns accounts that are directly accessible by the 
authenticating user. I've looked through the API reference and it seems 
like the only possible alternative is to use the customer_client API to 
retrieve every account linked to the authenticating user, but all of the 
example code relies on client libraries and what I'd need is a URL that I 
can make a request to with App Script. Any help on this would be greatly 
appreciated!

Thanks,
Ky

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/7b44b988-5fda-4762-898d-17f8bafd6348%40googlegroups.com.