The following are sample HTTP requests and responses. 
            The placeholders shown need to be replaced with actual values.
POST /jsv/reply/GetProductRouteRequest HTTP/1.1 
Host: api-beta.ghs-automotive.nl 
Content-Type: text/jsv
Content-Length: length
{
	id: String,
	withoutRouteInfo: False,
	withoutNettoPrice: False
}
 
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
			}
		]
	},
	product: 
	{
		availableLinkedWarehouse: 0001-01-01,
		availableNextRoute: 0001-01-01,
		routeExpiryDate: 0001-01-01,
		isNextRoute: False,
		isVheckRoute: False,
		nettoPrice: 0,
		quantityLinkedWarehouse: 0,
		quantityAllWarehouses: 0
	}
}