| POST | /stock/{brand}/transfer | Transfer Stock from one POS to another |
|---|
import Foundation
import ServiceStack
public class TransferStock : Codable
{
/**
* Brand Trigram
*/
// @ApiMember(Description="Brand Trigram", IsRequired=true)
public var brand:String
/**
* POS of the stock origin
*/
// @ApiMember(Description="POS of the stock origin", IsRequired=true)
public var posCodeOrigin:String
/**
* POS of the stock destination
*/
// @ApiMember(Description="POS of the stock destination", IsRequired=true)
public var posCodeDestination:String
/**
* Article Code of the item to be transferred
*/
// @ApiMember(Description="Article Code of the item to be transferred", IsRequired=true)
public var articleCode:String
/**
* Quantity of the the item to be transferred
*/
// @ApiMember(Description="Quantity of the the item to be transferred", IsRequired=true)
public var quantity:Int
/**
* Serial Numbers of the item to be transferred
*/
// @ApiMember(Description="Serial Numbers of the item to be transferred")
public var serialNumbers:[String] = []
required public init(){}
}
public class TransferStockResponse : Codable
{
/**
* 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 var stockTransferStatusId:Int
required public init(){}
}
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}/transfer 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","articleCode":"String","quantity":0,"serialNumbers":["String"]}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"stockTransferStatusId":0}