Hello,
I am trying to get the campaign ad network type via the API. I attach a screenshot with the UI display of the setup for one of my campaigns. From my understanding, only the YouTube Search Results option should be on. When I query the ad network type via the API, though, I get 2 values in the response, namely ['YOUTUBE_SEARCH', 'YOUTUBE_WATCH'].
To be more precise, I use the following query:
SELECT
campaign.id, segments.ad_network_type, segments.date
FROM
campaign
WHERE
campaign.id = <my campaign id>
AND segments.date BETWEEN '<today>' AND '<today - 1 day>'
I was expecting to get only 'YOUTUBE_SEARCH' in the response, and I do not understand why 'YOUTUBE_WATCH' is also returned. I have experimented with using different dates in the segments, but the response does not change.
I would like to know the logic behind the current behavior of the API. ALso, I would like to know if there is any way to query only enabled ad network types.
Thank you for your response in advance,