Hi Google Ads API Team,
I'm trying to write a GAQL that fetches clicks for a specific date and returns the exact headline & description combination from a responsive ad that generated each click.
We have some unwanted leads generated from our responsive campaigns, and I'm just trying to drill down which specific combination of headlines and descriptions are generating these unwanted leads.
I'm able to retrieve specific clicks:
```sql
FROM click_view
WHERE segments.date = '2024-05-08'
```
Which gives me information for a specific ad id that generated that click. However, when I query that ad id from a specific click, I'm only able to retrieve all the different headlines/descriptions for that ad, but unable to retrieve exact combination of headline + description that generated that specific click:
```sql
SELECT ad_group_ad.ad.responsive_search_ad.headlines, ad_group_ad.ad.responsive_search_ad.descriptions FROM ad_group_ad WHERE
ad_group.id = 144629223745 AND
ad_group_ad.ad.id = XYZ
```
Please let me know if there's a solution.