Search code examples
c#ebay-api

How do I get MPN?


While playing around with eBay .NET SDK, I ran into an issue. I couldn't find some fields I heeded to, such as EAN, Model, Brand, ASIN and especially MPN.

A class I use as an info class is eBay.Service.Core.Soap.ItemType. To get the information about a product I do

GetItemCall call = new GetItemCall(_context);
call .DetailLevelList.Add(DetailLevelCodeType.ReturnAll);
item = apicall.GetItem(itemID.ToString());

How can I get these fields?


Solution

  • http://developer.ebay.com/devzone/xml/docs/Reference/eBay/GetItem.html#Response.Item.ProductListingDetails.BrandMPN ?