I use the Java API mostly, but I think the issue your having is something I went through recently, CreativeID has become AdID, if you use the AdGroupAd service you can use a selector with a filter on the AdID(which used to be CreativeID but is actually field id as far as the selector is concerned) you can get what you need. The thing to note about the new AdGroupAd service(among others) is that the api docs do not show you all fields that are selectable/filterable on any one page, the available fields depend on the Ad.Type that you are requesting information for, so if your ad is a TextAd you have to get fields that are not listed as fields on the Ad specification (http:// code.google.com/apis/adwords/docs/reference/latest/ AdGroupAdService.Ad.html) from the more specific Ad.Type specification (http://code.google.com/apis/adwords/docs/reference/latest/ AdGroupAdService.TextAd.html). You will notice that the id(AdID) field is selectable and filterable for all Ad.Type : Ad so if you put a filter in a selector on field "id" the selector should get you the ad with that id.
Note that you need to know already what type of ad you are trying to get fields for because in 201101 there are Ad.Type instances that do not have description fields(ie: ImageAd). Also, note that desc1 and desc2 are no longer valid field names, they have been changed to description1 and description2. Hope this helps you out. -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ 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 [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
