Re: How to get the keyword which triggered the phone call?

2019-01-13 Thread raghu
Is there a solution to identifying call extension metrics for a keyword 
level?

I don't see any segments in keywords reports nor a way to tie the call 
report to keywords.
https://developers.google.com/adwords/api/docs/appendix/reports/call-metrics-call-details-report

On Thursday, March 2, 2017 at 3:19:34 PM UTC+5:30, shu...@mobistreak.com 
wrote:
>
> I know there is a way to get keyword data in real time would be to add a 
> GET parameter to the destination URL using Keyword Insertion 
>  but i use only 
> call only add so there is no landing page. Once clicked on the add it 
> directly opens the phone dialer. Which is the best way to get 100% precise 
> result for my case? How to get keyword which triggered the phone call?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/e5954bf5-30bf-46d9-aa3e-3f8a60f6fd33%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Google Ads API - How to get subaccounts under another account

2019-01-13 Thread 'Dannison Yao (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Stiven,

To get the accessible accounts for a user, you can use 
CustomerService.ListAccessibleCustomers 

 which 
returns resource names of customers directly accessible by the user 
authenticating the call.

Regards,
Dannison
Google Ads API Team

On Saturday, January 12, 2019 at 11:38:59 PM UTC+8, Stiven Ariza wrote:
>
> I have a google account with access to 3 Google Ads Account, one of those 
> is a MCC, How can I get all subaccounts under this account?
>
> Regards,
>

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

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


Re: How can I see all Quotas and Limits

2019-01-13 Thread 'Luis Xander Talag (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Stiven,

The RESOURCE_EXHAUSTED 

 error 
that you encountered means that a system frequency limit has been exceeded 
due to too many requests in a short period of time. This being said, I 
would suggest you to set up short delays between requests or combine more 
operations in fewer requests. Currently, the Google Ads API doesn't have a 
documentation for limits since it is still in beta. However, you could find 
in this guide 
 the 
common errors available in the API which you might encounter. Also, this 
guide  for 
more information on troubleshooting.

With regards to retrieving the account id and the account name in one API I 
call, I'm afraid it is not currently possible as the service for retrieving 
the list of customers under one's account and retrieving of customer 
information are two separate services.

Thanks and regards,
Luis
Google Ads API Team

On Sunday, January 13, 2019 at 4:47:25 AM UTC+8, Stiven Ariza wrote:
>
> I am loging with a Google Account and get MCC Account and SubAccounts, 
> firts I get Customers Id and then I need to call another service to get 
> Accounts name but I catch the next error:
>
> RESOURCE_EXHAUSTED: Quota exceeded for quota metric '
> googleads.googleapis.com/get_requests' and limit 
> 'GetsPerMinutePerProject' of service 'googleads.googleapis.com' for 
> consumer 'project_number:974234XXX'.
>
> Where can I see All Quotas and Limits of Google Ads API?
>
> is there way to obtain customer id and name in a one call to API?
>
> I share my code:
>
>
> public static List GetAllCustomersId(GoogleAdsClient 
> googleAdsClient) {
> List customerLst = new ArrayList();
> try (CustomerServiceClient customerServiceClient = 
> googleAdsClient.getCustomerServiceClient()) {
> ListAccessibleCustomersRequest request = 
> ListAccessibleCustomersRequest.newBuilder().build();
> ListAccessibleCustomersResponse response = 
> customerServiceClient.listAccessibleCustomers(request); 
> for (String custResource : 
> customerServiceClient.listAccessibleCustomers(request).getResourceNamesList())
>  
> {
> custResource = custResource.substring(custResource.lastIndexOf("/") + 1, 
> custResource.length());
> /* Get tree customers*/
> String query = "SELECT customer.id, customer.descriptive_name, 
> customer_client.resource_name, "
> + "customer_client.client_customer, customer_client.level, "
> + "customer_client.hidden FROM customer_client";
>
> try (GoogleAdsServiceClient client = 
> googleAdsClient.getGoogleAdsServiceClient()) {
> SearchPagedResponse response1 = 
> client.search(String.valueOf(custResource), query);
>
> for (GoogleAdsRow row : response1.iterateAll()) { 
> String clientCus = row.getCustomerClient().getClientCustomer().getValue();
> clientCus = clientCus.substring(clientCus.lastIndexOf("/") + 1, 
> clientCus.length());
> System.out.println("Data: " + clientCus);
> String accountNameStr = GetAccountName(googleAdsClient, 
> Long.parseLong(clientCus));
> System.out.println("subaccount: " + accountNameStr);
> }
> }
>
> /**/
> }
> }
> return customerLst;
> }
>
> public static String GetAccountName(GoogleAdsClient googleAdsClient, long 
> customerId) {
> String accountNameStr = "";
> try (CustomerServiceClient customerServiceClient = 
> googleAdsClient.getCustomerServiceClient()) {
> String customerResourceName = ResourceNames.customer(customerId);
> Customer customer = 
> customerServiceClient.getCustomer(customerResourceName);
> // Print account information.
> System.out.printf(
> "Customer with ID %d, descriptive name '%s', currency code '%s', timezone 
> '%s', "
> + "tracking URL template '%s' and auto tagging enabled '%s' was 
> retrieved.%n",
> customer.getId().getValue(), customer.getDescriptiveName().getValue(),
> customer.getCurrencyCode().getValue(), customer.getTimeZone().getValue(),
> customer.getTrackingUrlTemplate().getValue(), 
> customer.getAutoTaggingEnabled().getValue());
> accountNameStr = customer.getDescriptiveName().getValue();
> }
> return accountNameStr;
> }
>
>
> Regards,
>

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

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

Re: UNEXPECTED_INTERNAL_API_ERROR raised during ConversionTrackerService.get query

2019-01-13 Thread 'Peter Oliquino (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Paul

Glad to hear that the issue is no longer being encountered. However, in the 
event that the issue resurfaces, please do write back so me or the rest of 
our team can further investigate.

Thanks and regards,
Peter
AdWords API Team


On Friday, January 11, 2019 at 10:16:54 PM UTC+8, paul.coo...@adspert.de 
wrote:
>
> The issue just disappeared, so I was not able to get the requested 
> information.
>
> On Tuesday, 11 December 2018 21:11:09 UTC+1, Peter Oliquino (AdWords API 
> Team) wrote:
>>
>> Hi Paul,
>>
>> Thank you for reaching out to support. Could you send to me your 
>> clientCustomerId and the complete SOAP request and response logs so I can 
>> further investigate? You may reply to me via the *Reply privately to 
>> author* option.
>>
>> Thanks and regards,
>> Peter
>> AdWords API Team
>>
>> On Wednesday, December 12, 2018 at 1:51:53 AM UTC+8, paul@adspert.de 
>> wrote:
>>>
>>> Hi,
>>>
>>> We're encountering a consistent and fatal error when making a 
>>> ConversionTrackerService get request. This only happens with a single 
>>> account. Others work without an issue.
>>>
>>> Here is the selector:
>>>
>>> selector = {
>>>'fields': ['Category', 'Id', 'Name', 'Status', 
>>> 'ExcludeFromBidding',
>>>   'CtcLookbackWindow', 'AttributionModelType'],
>>>}
>>>
>>> Errror:
>>>
>>> AdwordsInternalApiError: [InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ 
>>> com.google.ads.api.services.common.error.InternalApiError.(InternalApiErro]
>>>
>>>
>>> Account ID and SOAP XML can be provided if needed.
>>>
>>> Thanks,
>>>
>>> Paul
>>>
>>>

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

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


Impressions number is less than clicks number in Search Query Performance report.

2019-01-13 Thread chenrui zhang
Hello,

I found that the impressions number is less than the clicks numbers in 
several rows. Is it expected?

Thank you in advance.








-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d048b46c-be77-47a9-ba86-3c54ee6c856f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.