Richemont.Booster2.PublicApi

<back to all web services

TransferStock

Requires Authentication
The following routes are available for this service:
POST/stock/{brand}/transferTransfer Stock from one POS to another
TransferStock Parameters:
NameParameterData TypeRequiredDescription
brandpathstringYesBrand Trigram
posCodeOriginbodystringYesPOS of the stock origin
posCodeDestinationbodystringYesPOS of the stock destination
articleCodebodystringYesArticle Code of the item to be transferred
quantitybodyintYesQuantity of the the item to be transferred
serialNumbersbodyList<string>NoSerial Numbers of the item to be transferred
TransferStockResponse Parameters:
NameParameterData TypeRequiredDescription
stockTransferStatusIdformintYesStatus of Stock Transfer: 1 means done, 2 means might take a while because consignment transfers need to be approved by SAP

To override the Content-type in your clients, use the 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 /stock/{brand}/transfer HTTP/1.1 
Host: dev-api-booster.richemont.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	brand: String,
	posCodeOrigin: String,
	posCodeDestination: String,
	articleCode: String,
	quantity: 0,
	serialNumbers: 
	[
		String
	]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	stockTransferStatusId: 0
}