s1 API Host

<back to all web services

GetProductBackordersRequest

The following routes are available for this service:
GET,OPTIONS/api/products/{id}/backordersGets information about the available backorders for a given productThis requests information about delivery time and quantity from other suppliers. This is only valid for products which have canBackorder set to true.
Parameters:
NameParameterData TypeRequiredDescription
IdpathstringYesThe id of the product (9 numbers long)
QuantityqueryintNoThe quantity for the product that needs to be backordered. Default is 1, If GHS has 2 in stock and the user needs 5, backorder should be 3.

To override the Content-type in your clients HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /jsv/reply/GetProductBackordersRequest HTTP/1.1 
Host: api2.ghs-automotive.nl 
Content-Type: text/jsv
Content-Length: length

{
	id: String,
	quantity: 0
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	responseStatus: 
	{
		errorCode: String,
		message: String,
		stackTrace: String,
		errors: 
		[
			{
				errorCode: String,
				fieldName: String,
				message: String
			}
		]
	}
}