Hi there,
I'm trying out the new Google Ads Beta API, running a very simple query to grab a list of Campaigns:
SELECT
FROM campaign
WHERE campaign.status IN ("ENABLED", "PAUSED")
The result has all the expected Search campaigns for the requested account, but doesn't include any Campaigns with Type = Display or Video.
I've tried adding ad_network_type as a segment as well, but it still shows the same list of Search Campaigns only. Also tried explicitly searching WHERE campaign.name = "Display Campaign Name" but got no results.
Am I missing something or is querying Display/Video campaigns not supported yet?