Hi,

As per the ads API v9: 
https://developers.google.com/google-ads/api/fields/v9/ad_group_asset, it 
supports fetching assets custom conversions. That's not working as 
expected. We are unable to pull the asset level conversions data segmented 
on `conversion_action`. This is a sample query that we tried:
```ruby
     SELECT segments.conversion_action_name,
                    segments.conversion_action,
                    metrics.all_conversions,
                    metrics.conversions,
                    asset.id,
                    ad_group.id
        FROM ad_group_asset
      WHERE segments.date
 BETWEEN '2022-01-01'
           AND '2022-01-12' AND metrics.conversions > 0
```

And since, we are able to pull the *non-segmented* data from the 
ad_group_ad_asset_view 
<https://developers.google.com/google-ads/api/fields/v9/ad_group_ad_asset_view> 
resource, 
so there's no question of "no data". Sample query for the same:
```ruby
     SELECT metrics.all_conversions,
                    metrics.conversions,
                    asset.id,
                    ad_group.id
        FROM ad_group_ad_asset_view
      WHERE segments.date
 BETWEEN '2022-01-01'
           AND '2022-01-12' AND metrics.conversions > 0
```
Let me know if you guys need any more information.

Best 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 
"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/aaa8d32c-a2ec-43bd-afea-b892d32c7663n%40googlegroups.com.
  • As... Vijay Kumar
    • ... 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum
      • ... Vijay Kumar
        • ... 'Google Ads API Forum Advisor' via Google Ads API and AdWords API Forum

Reply via email to