Hey,
I'm trying to get from the API the same hotel_performance_view report that I can see in Google Ads UI.
This is the query that I'm running:
SELECT
campaign.id, segments.hotel_booking_window_days, segments.hotel_length_of_stay, segments.device, segments.date, segments.partner_hotel_id, segments.hotel_price_bucket, campaign.advertising_channel_type, metrics.clicks, metrics.hotel_price_difference_percentage, metrics.hotel_eligible_impressions, metrics.impressions, metrics.cost_micros, metrics.conversions
FROM hotel_performance_view
where segments.date = '2021-11-15'
I can see that I'm getting much less rows comparing the UI data and that the API doesn't return rows which their clicks and impressions are zero (it returns only rows that one of these metrics is higher than 0). This makes the hotel_eligible_impressions, for example, to be much lower than I can see in the UI report.
Can you plz help me figure out how can I get the same results as in the UI?
Thanks!