Hi, I tried to get the report for the click_view resource through the google ads api, but the response body kept being empty The query is: ``` SELECT click_view.gclid, click_view.keyword_info.text, click_view.keyword_info.match_type, campaign.id, campaign.name, ad_group.id, ad_group.name FROM click_view WHERE click_view.gclid = 'Cj0KCQjwoP_FBhDFARIsANPG24OKya-jZsHFQe-VHnLjMtVUeeDOPphQnDjdphrhnLb9ZgaZdz9Qac0aAvTuEALw_wcB' AND segments.date = '2025-09-15' ``` and the response is: ``` [ "fieldMask" => "clickView.gclid,clickView.keywordInfo.text,clickView.keywordInfo.matchType,campaign.id,campaign.name,adGroup.id,adGroup.name", "queryResourceConsumption" => "410" ] ```
I'm using the v21 version of the api and I'm not using any client I'm using the api rest using this URL: ``` https://googleads.googleapis.com/v21/customers/{$this->customerId}/googleAds:search ``` The customerID is:3941925184 I know my integration works because If I use another query I get a response, for example with this query: ``` SELECT customer.id, customer.resource_name, customer.descriptive_name, customer.manager, customer.test_account FROM customer ``` -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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 [email protected] To unsubscribe from this group, send email to [email protected] 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 [email protected]. To view this discussion visit https://groups.google.com/d/msgid/adwords-api/b072fa8e-6462-450b-93e8-a40b74ff7987n%40googlegroups.com.
