| POST | /stock/{brand}/transferBulk | Bulk Transfer Stock from one POS to another |
|---|
export class ItemResponse
{
/** @description Article Code of the item response */
// @ApiMember(Description="Article Code of the item response", IsRequired=true)
public articleCode: string;
/** @description Status of Stock Transfer: 1 means done, 2 means might take a while because consignment transfers need to be approved by SAP */
// @ApiMember(Description="Status of Stock Transfer: 1 means done, 2 means might take a while because consignment transfers need to be approved by SAP", IsRequired=true)
public stockTransferStatusId: number;
/** @description Errors of items */
// @ApiMember(Description="Errors of items", IsRequired=true)
public errors: Lookup<string>[];
public constructor(init?: Partial<ItemResponse>) { (Object as any).assign(this, init); }
}
export class TransferStockBulkResponse
{
/** @description Response of items */
// @ApiMember(Description="Response of items", IsRequired=true)
public items: ItemResponse[];
public constructor(init?: Partial<TransferStockBulkResponse>) { (Object as any).assign(this, init); }
}
export class Item
{
/** @description Article Code of the item to be transferred */
// @ApiMember(Description="Article Code of the item to be transferred", IsRequired=true)
public articleCode: string;
/** @description Quantity of the the item to be transferred */
// @ApiMember(Description="Quantity of the the item to be transferred", IsRequired=true)
public quantity: number;
/** @description Serial Numbers of the item to be transferred */
// @ApiMember(Description="Serial Numbers of the item to be transferred")
public serialNumbers: string[];
public constructor(init?: Partial<Item>) { (Object as any).assign(this, init); }
}
export class TransferStockBulk
{
/** @description Brand Trigram */
// @ApiMember(Description="Brand Trigram", IsRequired=true)
public brand: string;
/** @description POS of the stock origin */
// @ApiMember(Description="POS of the stock origin", IsRequired=true)
public posCodeOrigin: string;
/** @description POS of the stock destination */
// @ApiMember(Description="POS of the stock destination", IsRequired=true)
public posCodeDestination: string;
/** @description Items to be transferred */
// @ApiMember(Description="Items to be transferred", IsRequired=true)
public items: Item[];
public constructor(init?: Partial<TransferStockBulk>) { (Object as any).assign(this, init); }
}
TypeScript TransferStockBulk DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /stock/{brand}/transferBulk HTTP/1.1
Host: dev-api-booster.richemont.com
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"brand":"String","posCodeOrigin":"String","posCodeDestination":"String","items":[{"articleCode":"String","quantity":0,"serialNumbers":["String"]}]}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"items":[{"articleCode":"String","stockTransferStatusId":0,"errors":[{"id":"String","description":"String"}]}]}