I have code for the Trading API above:
ItemType item = eBayAddItems.BuildItemFixedPrice(lInventory[cnt][3], lInventory[cnt][4], lInventory[cnt][6], lInventory[cnt][7], Convert.ToInt32(lInventory[cnt][2]),
lInventory[cnt][8], Convert.ToBoolean(lInventory[cnt][27]), Convert.ToDouble(lInventory[cnt][28]), Convert.ToBoolean(lInventory[cnt][30]), lInventory[cnt][32], lInventory[cnt][31],
Convert.ToInt32(lInventory[cnt][10]), Convert.ToDouble(lInventory[cnt][26]), lInventory[cnt][29], arr4, Convert.ToInt32(lInventory[cnt][9]), lInventory[cnt][1], lInventory[cnt][33],
lInventory[cnt][34], lInventory[cnt][35], lInventory[cnt][36], lInventory[cnt][37], lInventory[cnt][38], lInventory[cnt][39], lInventory[cnt][40]
, lInventory[cnt][41], lInventory[cnt][42], lInventory[cnt][43], lInventory[cnt][44],tokens[5],tokens[1],tokens[2],tokens[3],tokens[4], tokens[6]);
AddFixedPriceItemCall apiCall = new AddFixedPriceItemCall(apiContext);
item.Storefront = new StorefrontType();
item.CategoryMappingAllowed = true;
item.Storefront.StoreName = "testuser_sepoto";
//item.Storefront.StoreURL = "http://stores.shop.sandbox.ebay.com/testuser-sepoto";
item.Storefront.StoreCategoryID = 461819;
FeeTypeCollection fees = apiCall.AddFixedPriceItem(item);
richTextBox1.AppendText("Item Added...\r\n");
My goal here is to get my item into my eBay "Storefront" and for the most part the code is successful in doing so however...
I am noticing that when I visit my eBay "Storefront" URL the products have a "No Photo" designation where an image of the item should be. I have loaded 12 images for the item and the 12 images do show up when I click the hyperlink for each item and view the item details and specifics however when I visit my stores URL at:
http://stores.shop.sandbox.ebay.com/testuser-sepoto
I see that there are no "title images" or "main storefront images" for any of the items. I have not yet been able to get any answers out of the forum at developer.ebay.com so I am posting here to see if anyone has gone through this before. My environment is C# .NET on eBay SDK build 787.
Thanks in advance for any help, comments or answers...