| GET | /aggregatedStock/{brand}/{posCode} | Get aggregated stock |
|---|
"use strict";
export class ClusterStockItem {
/** @param {{articleCode?:string,assetQuantity?:number,consignmentQuantity?:number}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {string}
* @description Article Code */
articleCode;
/**
* @type {number}
* @description Asset Quantity */
assetQuantity;
/**
* @type {number}
* @description Consignment Quantity */
consignmentQuantity;
}
export class ClusterStock {
/** @param {{clusterCode?:string,stockItems?:ClusterStockItem[]}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {string}
* @description Cluster code */
clusterCode;
/**
* @type {ClusterStockItem[]}
* @description Stock Items */
stockItems;
}
export class AggregatedStockResponse extends ClusterStock {
/** @param {{clusterCode?:string,stockItems?:ClusterStockItem[]}} [init] */
constructor(init) { super(init); Object.assign(this, init) }
}
export class GetAggregatedStock {
/** @param {{brand?:string,posCode?:string,articleCodes?:string[]}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {string}
* @description Brand */
brand;
/**
* @type {string}
* @description Authorized POS Code e.g. ES100:102048 */
posCode;
/**
* @type {string[]}
* @description Article Codes */
articleCodes;
}
JavaScript GetAggregatedStock DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /aggregatedStock/{brand}/{posCode} HTTP/1.1
Host: dev-api-booster.richemont.com
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
clusterCode: String,
stockItems:
[
{
articleCode: String,
assetQuantity: 0,
consignmentQuantity: 0
}
]
}