Home
Find the answer to your question
Below is the code. Corresponding SOAP request is attached with this article.
/* 2012-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 Revise Private Sub ReviseFixedPriceItem() 'create the context Dim context As New ApiContext() 'set the User token context.ApiCredential.eBayToken = "Your token" 'set the server url context.SoapApiServerUrl = "https://api.sandbox.ebay.com/wsapi" 'enable logging context.ApiLogManager = New ApiLogManager() context.ApiLogManager.ApiLoggerList.Add(New FileLogger("log.txt", True, True, True)) context.ApiLogManager.EnableLogging = True 'set the version context.Version = "725" context.Site = SiteCodeType.Australia Dim reviseFP As New ReviseFixedPriceItemCall(context) Dim item As New ItemType() item.SKU = "5364" 'Basic (Title revision) item.Title = "Revising Title" reviseFP.Item = item reviseFP.Execute() Console.WriteLine(reviseFP.ApiResponse.Ack + " Revised SKU " + reviseFP.SKU) End Sub End Class End Namespace |