I'm running the .net examples, specifically GetCampaigns.
This runs without error and returns some of my campaigns using the default query (shown below).
It however doesn't list all of my campaigns. I specifically want to list my UAC campaigns.
I have read elsewhere that I might be able to get these by selecting from the CAMPAIGN_PERFORMANCE_REPORT. I can't however find how this should be formatted to work in the query shown below.
Any tips would be most welcome.
SearchGoogleAdsRequest request = new SearchGoogleAdsRequest()
{
PageSize = PAGE_SIZE,
Query = @"SELECT
campaign.network_settings.target_content_network
FROM campaign
CustomerId = customerId.ToString()
};