Hi Google Ads API team!
That’s been 6 days since my last email answer. Can you please confirm it’s in 
progress at your side? 
Thanks,
Oksana

> On 14 Nov 2023, at 17:27, Oksana Sulyma <oks...@tapclicks.com> wrote:
> 
> Hi team,
> 
> Thanks so much for your response and sorry for delay here. 
> 
> We don’t use customers.googleAds.searchStream 
> <https://www.google.com/url?q=https://developers.google.com/google-ads/api/rest/reference/rest/v15/customers.googleAds/searchStream%23:~:text%3DReturns%2520all%2520rows%2520that%2520match%2520the%2520search%2520stream%2520query.&source=gmail-imap&ust=1700250300000000&usg=AOvVaw0LVz5pLrm-UL8WcuwZ8GAg>
>  in our project, I’m fine with the statement that both 
> GoogleAdsService.SearchStream 
> <https://www.google.com/url?q=https://developers.google.com/google-ads/api/reference/rpc/v15/GoogleAdsService%23searchstream:~:text%3DReturns%2520all%2520rows%2520that%2520match%2520the%2520search%2520stream%2520query.&source=gmail-imap&ust=1700250300000000&usg=AOvVaw0uRjZaL2UwJr_4D7p--Rge>
>  and customers.googleAds.searchStream 
> <https://www.google.com/url?q=https://developers.google.com/google-ads/api/rest/reference/rest/v15/customers.googleAds/searchStream%23:~:text%3DReturns%2520all%2520rows%2520that%2520match%2520the%2520search%2520stream%2520query.&source=gmail-imap&ust=1700250300000000&usg=AOvVaw0LVz5pLrm-UL8WcuwZ8GAg>
>  should return the same response.
> 
> Let me provide the simplest query showing issue with API response, complete 
> fetch logs are also attached. 
> 
> 1. "query":"SELECT customer.id, customer.descriptive_name, campaign.id, 
> campaign.name, segments.ad_network_type, segments.date, metrics.impressions, 
> metrics.clicks, metrics.phone_impressions, metrics.phone_calls FROM campaign 
> WHERE segments.date>='2023-09-14' AND segments.date<='2023-09-14'  AND 
> campaign.id IN (19639027572) ORDER BY segments.date DESC”
> 
> Result: 
> {
>     "campaign": {
>         "resourceName": "customers\/7280281992\/campaigns\/19639027572",
>         "id": "19639027572",
>         "name": "Discovery - Inventory Expansion"
>     },
>     "customer": {
>         "resourceName": "customers\/7280281992",
>         "id": "7280281992",
>         "descriptiveName": "Palmetto57 Nissan"
>     },
>     "metrics": {
>         "clicks": "3",
>         "impressions": "226",
>         "phoneCalls": "0",
>         "phoneImpressions": "0"
>     },
>     "segments": {
>         "adNetworkType": "MIXED",
>         "date": "2023-09-14"
>     }
> }
> 
> 2. "query":"SELECT customer.id, customer.descriptive_name, campaign.id, 
> campaign.name, segments.date, metrics.impressions, metrics.clicks, 
> metrics.phone_impressions, metrics.phone_calls FROM campaign WHERE 
> segments.date>='2023-09-14' AND segments.date<='2023-09-14'  AND campaign.id 
> IN (19639027572) ORDER BY segments.date DESC”  (only segments.ad_network_type 
> was removed)
> 
> Result:
> {
>     "campaign": {
>         "resourceName": "customers\/7280281992\/campaigns\/19639027572",
>         "id": "19639027572",
>         "name": "Discovery - Inventory Expansion"
>     },
>     "customer": {
>         "resourceName": "customers\/7280281992",
>         "id": "7280281992",
>         "descriptiveName": "Palmetto57 Nissan"
>     },
>     "metrics": {
>         "clicks": "3",
>         "impressions": "226",
>         "phoneCalls": "2",
>         "phoneImpressions": "0"
>     },
>     "segments": {
>         "date": "2023-09-14"
>     }
> }
> 
> My question is why do we get "phoneCalls": “0” having  
> segments.ad_network_type in query? Expected result is "phoneCalls": “2”. 
> Note we didn’t observe similar issues for other accounts we pull Google Ads 
> API reports data for. 
> Please help to understand what is wrong here.
> 
> Thanks again,
> Oksana
> 
> <logs_no_network.zip>
> <logs_network.zip>
> 
> 
>> On 10 Nov 2023, at 21:44, Google Ads API Forum Advisor 
>> <adsapi@forumsupport.google> wrote:
>> 
>> Hi,
>> 
>> Thank you for getting back to us.
>> 
>> As requested, we can continue our discussion on this thread only. I would 
>> like to inform you that both GoogleAdsService.SearchStream 
>> <https://www.google.com/url?q=https://developers.google.com/google-ads/api/reference/rpc/v15/GoogleAdsService%23searchstream:~:text%3DReturns%2520all%2520rows%2520that%2520match%2520the%2520search%2520stream%2520query.&source=gmail-imap&ust=1700250300000000&usg=AOvVaw0uRjZaL2UwJr_4D7p--Rge>
>>  and customers.googleAds.searchStream 
>> <https://www.google.com/url?q=https://developers.google.com/google-ads/api/rest/reference/rest/v15/customers.googleAds/searchStream%23:~:text%3DReturns%2520all%2520rows%2520that%2520match%2520the%2520search%2520stream%2520query.&source=gmail-imap&ust=1700250300000000&usg=AOvVaw0LVz5pLrm-UL8WcuwZ8GAg>
>>  should return the same response. GoogleAdsService.SearchStream 
>> <https://www.google.com/url?q=https://developers.google.com/google-ads/api/reference/rpc/v15/GoogleAdsService%23searchstream:~:text%3DReturns%2520all%2520rows%2520that%2520match%2520the%2520search%2520stream%2520query.&source=gmail-imap&ust=1700250300000000&usg=AOvVaw0uRjZaL2UwJr_4D7p--Rge>
>>  is a service available in client libraries which is used to fetch the data 
>> and metrics across resources and you can find the request and response body 
>> of the service in the reference document, where as 
>> customers.googleAds.searchStream 
>> <https://www.google.com/url?q=https://developers.google.com/google-ads/api/rest/reference/rest/v15/customers.googleAds/searchStream%23:~:text%3DReturns%2520all%2520rows%2520that%2520match%2520the%2520search%2520stream%2520query.&source=gmail-imap&ust=1700250300000000&usg=AOvVaw0LVz5pLrm-UL8WcuwZ8GAg>
>>  is the REST interface which can used to run the query using API explorer 
>> without the use of a Google-supported client library.
>> 
>> I would request you to provide us with the latest complete API logs using 
>> GoogleAdsService.SearchStream 
>> <https://www.google.com/url?q=https://developers.google.com/google-ads/api/reference/rpc/v15/GoogleAdsService%23searchstream:~:text%3DReturns%2520all%2520rows%2520that%2520match%2520the%2520search%2520stream%2520query.&source=gmail-imap&ust=1700250300000000&usg=AOvVaw0uRjZaL2UwJr_4D7p--Rge>
>>  and customers.googleAds.searchStream 
>> <https://www.google.com/url?q=https://developers.google.com/google-ads/api/rest/reference/rest/v15/customers.googleAds/searchStream%23:~:text%3DReturns%2520all%2520rows%2520that%2520match%2520the%2520search%2520stream%2520query.&source=gmail-imap&ust=1700250300000000&usg=AOvVaw0LVz5pLrm-UL8WcuwZ8GAg>,
>>  so that we can further investigate this issue further.
>>  
>> This message is in relation to case "ref:!00D1U01174p.!5004Q02qAh22: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/4E932DCA-9E11-4826-BAA5-C8C913EE7C40%40tapclicks.com.
  • Po... 'Oksana Sulyma' via Google Ads API and AdWords API Forum
    • ... 'Oksana Sulyma' via Google Ads API and AdWords API Forum
      • ... 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
        • ... 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
          • ... 'Oksana Sulyma' via Google Ads API and AdWords API Forum
            • ... 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
              • ... 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
                • ... 'Oksana Sulyma' via Google Ads API and AdWords API Forum

Reply via email to