Richemont.Booster2.PublicApi

<back to all web services

ExportMovement

Requires Authentication
The following routes are available for this service:
POST/stock/{brand}/movement/exportExport Stock Movement Data
ExportMovement Parameters:
NameParameterData TypeRequiredDescription
downloadRequestIdbodystringYesExport Request ID of the API Consumers
MovementsRequest Parameters:
NameParameterData TypeRequiredDescription
brandformstringYesBrand
posCodesformList<string>YesPOS Legacy
movementTypeIdsformList<int>NoMovement Type Ids
searchKeyformstringNoSearch Key (Article or SerialNumber)
dateFromformDateTime?NoIn Stock Since date from
dateToformDateTime?NoIn Stock Since date to
sortByformstringNoSort by date could be: 'DateDESC' or 'DateASC' (default is descending)
ExportMovementResponse Parameters:
NameParameterData TypeRequiredDescription
asyncTaskIdformGuidYesUnique Identifier of the Export Request created

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

{
	downloadRequestId: String,
	brand: String,
	posCodes: 
	[
		String
	],
	movementTypeIds: 
	[
		0
	],
	searchKey: String,
	dateFrom: 0001-01-01,
	dateTo: 0001-01-01,
	sortBy: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	asyncTaskId: 00000000000000000000000000000000
}