// item quality
item.Quantity = pQty;
// item condition, New
item.ConditionID = pCondition;
// listing category,
CategoryType category = new CategoryType();
category.CategoryID = pCategoryID; //CategoryID = 11104 (CookBooks) , Parent CategoryID=267(Books)
item.PrimaryCategory = category;
// item specifics
item.ItemSpecifics = buildItemSpecifics(pItemSpecs);
//Track item by SKU
item.InventoryTrackingMethod = InventoryTrackingMethodCodeType.SKU;
item.SKU = pSKU;
/*Console.WriteLine("Do you want to use Business policy profiles to list this item? y/n");
String input = Console.ReadLine();
if (input.ToLower().Equals("y"))
{
// seller profile (shipping profile + returnPolicy profile + payment profile )
item.SellerProfiles = BuildSellerProfiles();
}
else
{*/
// payment methods
item.PaymentMethods = new BuyerPaymentMethodCodeTypeCollection();
item.PaymentMethods.AddRange(
new BuyerPaymentMethodCodeType[] { BuyerPaymentMethodCodeType.PayPal }
);
// email is required if paypal is used as payment method
item.PayPalEmailAddress = pPayPal;
// shipping details
item.ShippingDetails = BuildShippingDetails(pFreePriorityMailShipping, pUSPSExpressShipping);
// return policy
if (pReturnsAccepted)
{
item.ReturnPolicy = new ReturnPolicyType();
item.ReturnPolicy.ReturnsAcceptedOption = "ReturnsAccepted";
if (pReturnsDescription != "") item.ReturnPolicy.Description = pReturnsDescription;
item.ReturnPolicy.ReturnsWithin = pReturnsWithin;
}
// handling time is required
item.DispatchTimeMax = pDispatchTimeMax;
/*}*/
//item Start Price
AmountType amount = new AmountType();
amount.Value = pPrice;
amount.currencyID = CurrencyCodeType.USD;
item.StartPrice = amount;
I have some code above in which I change the inventory tracking method to SKU of the item and apply the SKU which originates from my sellers spreadsheet. My seller is reporting to me that the items loaded by the function above are not being tracked by SKU and are still being tracked by ID. I am not sure yet where in the eBay interface I would find the SKU or even the ID to check this myself yet. Is there someplace perhaps under My eBay -> selling at sandbox.ebay.com where I could locate a SKU?