| POST | /stock/{brand}/transfer | Transfer Stock from one POS to another |
|---|
"use strict";
export class TransferStockResponse {
/** @param {{stockTransferStatusId?:number}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {number}
* @description Status of Stock Transfer: 1 means done, 2 means might take a while because consignment transfers need to be approved by SAP */
stockTransferStatusId;
}
export class TransferStock {
/** @param {{brand?:string,posCodeOrigin?:string,posCodeDestination?:string,articleCode?:string,quantity?:number,serialNumbers?:string[]}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {string}
* @description Brand Trigram */
brand;
/**
* @type {string}
* @description POS of the stock origin */
posCodeOrigin;
/**
* @type {string}
* @description POS of the stock destination */
posCodeDestination;
/**
* @type {string}
* @description Article Code of the item to be transferred */
articleCode;
/**
* @type {number}
* @description Quantity of the the item to be transferred */
quantity;
/**
* @type {string[]}
* @description Serial Numbers of the item to be transferred */
serialNumbers;
}
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.
POST /stock/{brand}/transfer HTTP/1.1
Host: dev-api-booster.richemont.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<TransferStock xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Stock.ServiceModel">
<articleCode>String</articleCode>
<brand>String</brand>
<posCodeDestination>String</posCodeDestination>
<posCodeOrigin>String</posCodeOrigin>
<quantity>0</quantity>
<serialNumbers xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</serialNumbers>
</TransferStock>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <TransferStockResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Stock.ServiceModel"> <stockTransferStatusId>0</stockTransferStatusId> </TransferStockResponse>