Home
Find the answer to your question
If you list an item with product data, your item has better chances of being surfaced in the search results. Here is a VB.NET AddFixedPriceItem sample for listing an item with eBay's product identifier (ePID). This sample has been written using the .NET SDK v817
References:
You can use the SAME code snippet as https://ebaydts.com/eBayKBDetails?KBid=1708. You just need to make the following changes/additions below,
*NOTE - make sure you copy the rest of the code snippet from KB1708. And swtich out the UPC or MPN for the below
'© 2010-2013 eBay Inc., All Rights Reserved 'Licensed under CDDL 1.0 - http://opensource.org/licenses/cddl1.php Imports eBay.Service.Call Imports eBay.Service.Core.Sdk Imports eBay.Service.Util Imports eBay.Service.Core.Soap Namespace Trading_Samples Public Class AddFixedPriceItem 'AddFPItem - listing using ePID Private Sub AddFPItemCatalog() Dim ePID As String = "EPID73559271" 'Apple iPhone 3GS Black (16GB) Cell Phone 'item.PrimaryCategory.CategoryID = ""; item.ProductListingDetails = New ProductListingDetailsType() item.ProductListingDetails.ProductReferenceID = ePID item.ProductListingDetails.IncludePrefilledItemInformation = True item.ProductListingDetails.IncludeStockPhotoURL = True End Sub End Class End Namespace |