We are trying utilize the latest version of Adwords API. We are able
to get campain names, ID, status etc. but the following values are
being returned as null or zero:
[averageCpc]
[averageCpm]
[averagePosition]
[conversionRate]
etc.

We are using C# client library that has been provided by Google:
http://code.google.com/p/google-api-adwords-dotnet/source/browse/#svn/branches/v9.0

If there any additional resources, please let us where they are on the
web or provide some guidance.
Thanks

Here is a partial snippet of the code, in case that's helpful:

  AdWordsUser user = new AdWordsUser();
  CampaignService campaignService =
 
(CampaignService)user.GetService(AdWordsService.v200909.CampaignService);

  try {
   // Get all campaigns.
   CampaignPage page = campaignService.get(new CampaignSelector());

   // Display campaigns.
   if (page != null && page.entries != null) {
    if (page.entries.Length > 0) {
     foreach (Campaign campaign in page.entries) {
      Response.Write("<br>Campaign with id = '" + campaign.id + "',
name = '" + campaign.name + "' and status = '" + campaign.status +
"'");
}

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en

Reply via email to