| 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 .xml suffix or ?format=xml
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: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<AggregatedStockResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Stock.ServiceModel">
<clusterCode>String</clusterCode>
<stockItems>
<ClusterStockItem>
<articleCode>String</articleCode>
<assetQuantity>0</assetQuantity>
<consignmentQuantity>0</consignmentQuantity>
</ClusterStockItem>
</stockItems>
</AggregatedStockResponse>