| POST | /stock/{brand}/transfer | Transfer Stock from one POS to another |
|---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
public static class TransferStock
{
/**
* Brand Trigram
*/
@ApiMember(Description="Brand Trigram", IsRequired=true)
public String brand = null;
/**
* POS of the stock origin
*/
@ApiMember(Description="POS of the stock origin", IsRequired=true)
public String posCodeOrigin = null;
/**
* POS of the stock destination
*/
@ApiMember(Description="POS of the stock destination", IsRequired=true)
public String posCodeDestination = null;
/**
* Article Code of the item to be transferred
*/
@ApiMember(Description="Article Code of the item to be transferred", IsRequired=true)
public String articleCode = null;
/**
* Quantity of the the item to be transferred
*/
@ApiMember(Description="Quantity of the the item to be transferred", IsRequired=true)
public Integer quantity = null;
/**
* Serial Numbers of the item to be transferred
*/
@ApiMember(Description="Serial Numbers of the item to be transferred")
public ArrayList<String> serialNumbers = null;
public String getBrand() { return brand; }
public TransferStock setBrand(String value) { this.brand = value; return this; }
public String getPosCodeOrigin() { return posCodeOrigin; }
public TransferStock setPosCodeOrigin(String value) { this.posCodeOrigin = value; return this; }
public String getPosCodeDestination() { return posCodeDestination; }
public TransferStock setPosCodeDestination(String value) { this.posCodeDestination = value; return this; }
public String getArticleCode() { return articleCode; }
public TransferStock setArticleCode(String value) { this.articleCode = value; return this; }
public Integer getQuantity() { return quantity; }
public TransferStock setQuantity(Integer value) { this.quantity = value; return this; }
public ArrayList<String> getSerialNumbers() { return serialNumbers; }
public TransferStock setSerialNumbers(ArrayList<String> value) { this.serialNumbers = value; return this; }
}
public static class TransferStockResponse
{
/**
* 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 Integer stockTransferStatusId = null;
public Integer getStockTransferStatusId() { return stockTransferStatusId; }
public TransferStockResponse setStockTransferStatusId(Integer value) { this.stockTransferStatusId = value; return this; }
}
}
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
}