Richemont.Booster2.PublicApi

<back to all web services

CreateStockValidateRequest

Requires Authentication
The following routes are available for this service:
POST/stock/validateCreate Validate Stock Request
CreateStockValidateRequest Parameters:
NameParameterData TypeRequiredDescription
brandbodystringYesBrand Trigram, e.g. CAR, IWC
posCodebodystringYesPOS Code e.g. ES100:102048
datebodyDateTimeYesValidation Date
itemsbodyList<CreateStockValidateRequestItem>YesItems
CreateStockValidateRequestItem Parameters:
NameParameterData TypeRequiredDescription
articleCodeformstringYesLegacy Article Code of the item
quantityformintYesStock Quantity
serialNumbersformList<string>NoSerial Numbers
CreateStockValidateResponse Parameters:
NameParameterData TypeRequiredDescription
validationIdformintYesValidation Id

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/validate HTTP/1.1 
Host: dev-api-booster.richemont.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	brand: String,
	posCode: String,
	date: 0001-01-01,
	items: 
	[
		{
			articleCode: String,
			quantity: 0,
			serialNumbers: 
			[
				String
			]
		}
	]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	validationId: 0
}