BasicsSOAPSOAP (Simple Object Access Protocol) is XML- based Web services. Linnworks Anywhere exposes the data and some functional elements of the system via XML-based web services. We use standard SOAP web service and have exposed following WSDL
In order to consume the web service you must generate an API token and assign permissions to the token in your Linnworks account using Account Management site. All the exposed methods require the token to be specified.
Standard Linnworks Anywhere accounts API is throttled:
You can consume web services in any programming environment - Java, .Net, Asp.Net, Python or PHP. While Java and .Net have native libraries and are able to compile WSDL into native classes and methods, PHP and other scripting languages may not be able to do it so well. In order to consume and utilize web services efficiently it is recommened to have some basic knowledge of the XML and SOAP.
URL GET/POST
Get/Post API gateway will be withdrawn from 1st February 2012
In addition to SOAP based web services Linnworks exposes some of its API via a CSV file output or input over a standard HTTP protocol. You can access the service by simply requesting a data from a specific URL providing token and method parameters. The output from the request is a plain text comma delimited flat file, where the first line is a column headers. All dates and decimal numbers are culture invariant (i.e. dates are in yyyy-mm-dd HH:mm:ss format and decimal separator is a dot, for example 19.99) To get data from the API, make a request to the following URL: http://api.linnlive.com/get.aspx?token=MYTOKEN&method=MethodName Where: MYTOKEN is 10 character long API token that you can generate from the account management site. MethodName is the name of the method you are executing For example, http://api.linnlive.com/get.aspx?token=A1B2C3D4E5&method=GetStockListLite outputs SKU,Level,Available,InOpenOrders,Due,Value,Location,MinLevel To get response from the server as downloadable CSV file add response=file for example http://api.linnlive.com/get.aspx?token=MYTOKEN&method=MethodName&response=file |