SellerCloud has a comprehensive API (application program interface) for managing inventory and orders; enabling third party developers to develop custom applications that can integrate with SellerCloud.
A directory of web services is located at developer.sellercloud.com.
Creating a web service instance
After you’ve added the web reference to your project, you can create a web service instance and download or update order information.
Remember that all web service methods require authentication: you have to specify your SellerCloud/CoreWebAdmin email and password in an AuthHeader. Any authentication-related exceptions are thrown by the service when you call a method.
It is also suggested to set a timeout value of 5 minutes to give room for any time-consuming operations.
Dim sellerCloud As New SC.SCService sellerCloud.Timeout = 5 * 60 * 1000 // 5 minutes in milliseconds sellerCloud.AuthHeaderValue = New SC.AuthHeader sellerCloud.AuthHeaderValue.UserName = "user@email.com" sellerCloud.AuthHeaderValue.Password = "password
Please see the attached document for more detailed information about how to use the SellerCloud webservices.