| POST | /stock/{brand}/transferBulk | Bulk Transfer Stock from one POS to another |
|---|
"use strict";
export class ItemResponse {
/** @param {{articleCode?:string,stockTransferStatusId?:number,errors?:Lookup<string>[]}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {string}
* @description Article Code of the item response */
articleCode;
/**
* @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;
/**
* @type {Lookup<string>[]}
* @description Errors of items */
errors;
}
export class TransferStockBulkResponse {
/** @param {{items?:ItemResponse[]}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {ItemResponse[]}
* @description Response of items */
items;
}
export class Item {
/** @param {{articleCode?:string,quantity?:number,serialNumbers?:string[]}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @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;
}
export class TransferStockBulk {
/** @param {{brand?:string,posCodeOrigin?:string,posCodeDestination?:string,items?:Item[]}} [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 {Item[]}
* @description Items to be transferred */
items;
}
JavaScript TransferStockBulk DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
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/jsonl
Content-Type: text/jsonl
Content-Length: length
{"brand":"String","posCodeOrigin":"String","posCodeDestination":"String","items":[{"articleCode":"String","quantity":0,"serialNumbers":["String"]}]}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"items":[{"articleCode":"String","stockTransferStatusId":0,"errors":[{"id":"String","description":"String"}]}]}