| POST | /stock/{brand}/transfer | Transfer Stock from one POS to another |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| brand | path | string | Yes | Brand Trigram |
| posCodeOrigin | body | string | Yes | POS of the stock origin |
| posCodeDestination | body | string | Yes | POS of the stock destination |
| articleCode | body | string | Yes | Article Code of the item to be transferred |
| quantity | body | int | Yes | Quantity of the the item to be transferred |
| serialNumbers | body | List<string> | No | Serial Numbers of the item to be transferred |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| stockTransferStatusId | form | int | Yes | Status of Stock Transfer: 1 means done, 2 means might take a while because consignment transfers need to be approved by SAP |
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.
POST /stock/{brand}/transfer HTTP/1.1
Host: dev-api-booster.richemont.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
brand: String,
posCodeOrigin: String,
posCodeDestination: String,
articleCode: String,
quantity: 0,
serialNumbers:
[
String
]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
stockTransferStatusId: 0
}