Hi, I am using C# to retrieve the campaign information. I can see geo
targets for the campaign in the adwords site, but when I retrieve the
campaign using the API all of the GeoTargeting fields are null. I am
using v13. Below is the code:
Google.CampaignService.CampaignInterfaceClient client
= GetClient();
Google.CampaignService.getCampaignRequest request =
new Google.CampaignService.getCampaignRequest();
request.applicationToken = _config.ApplicationToken;
request.id = (int)id;
request.clientEmail = _config.ClientEmail;
request.developerToken = _config.DeveloperToken;
request.email = _config.Email;
request.password = _config.Password;
request.useragent = _config.UserAgent;
Google.CampaignService.getCampaignResponse response =
((Google.CampaignService.CampaignInterface)client).getCampaign
(request);
Any idea what I could be doing wrong?
Thank you!!!
Filipp
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"AdWords API Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
-~----------~----~----~----~------~----~------~--~---