| POST | /stock/{brand}/transferBulk | Bulk Transfer Stock from one POS to another |
|---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
public static class TransferStockBulk
{
/**
* 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;
/**
* Items to be transferred
*/
@ApiMember(Description="Items to be transferred", IsRequired=true)
public ArrayList<Item> items = null;
public String getBrand() { return brand; }
public TransferStockBulk setBrand(String value) { this.brand = value; return this; }
public String getPosCodeOrigin() { return posCodeOrigin; }
public TransferStockBulk setPosCodeOrigin(String value) { this.posCodeOrigin = value; return this; }
public String getPosCodeDestination() { return posCodeDestination; }
public TransferStockBulk setPosCodeDestination(String value) { this.posCodeDestination = value; return this; }
public ArrayList<Item> getItems() { return items; }
public TransferStockBulk setItems(ArrayList<Item> value) { this.items = value; return this; }
}
public static class Item
{
/**
* 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 getArticleCode() { return articleCode; }
public Item setArticleCode(String value) { this.articleCode = value; return this; }
public Integer getQuantity() { return quantity; }
public Item setQuantity(Integer value) { this.quantity = value; return this; }
public ArrayList<String> getSerialNumbers() { return serialNumbers; }
public Item setSerialNumbers(ArrayList<String> value) { this.serialNumbers = value; return this; }
}
public static class TransferStockBulkResponse
{
/**
* Response of items
*/
@ApiMember(Description="Response of items", IsRequired=true)
public ArrayList<ItemResponse> items = null;
public ArrayList<ItemResponse> getItems() { return items; }
public TransferStockBulkResponse setItems(ArrayList<ItemResponse> value) { this.items = value; return this; }
}
public static class ItemResponse
{
/**
* Article Code of the item response
*/
@ApiMember(Description="Article Code of the item response", IsRequired=true)
public String articleCode = null;
/**
* 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;
/**
* Errors of items
*/
@ApiMember(Description="Errors of items", IsRequired=true)
public ArrayList<Lookup<String>> errors = null;
public String getArticleCode() { return articleCode; }
public ItemResponse setArticleCode(String value) { this.articleCode = value; return this; }
public Integer getStockTransferStatusId() { return stockTransferStatusId; }
public ItemResponse setStockTransferStatusId(Integer value) { this.stockTransferStatusId = value; return this; }
public ArrayList<Lookup<String>> getErrors() { return errors; }
public ItemResponse setErrors(ArrayList<Lookup<String>> value) { this.errors = value; return this; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
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: application/xml
Content-Type: application/xml
Content-Length: length
<TransferStockBulk xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Stock.ServiceModel">
<brand>String</brand>
<items>
<Item>
<articleCode>String</articleCode>
<quantity>0</quantity>
<serialNumbers xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:string>String</d4p1:string>
</serialNumbers>
</Item>
</items>
<posCodeDestination>String</posCodeDestination>
<posCodeOrigin>String</posCodeOrigin>
</TransferStockBulk>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<TransferStockBulkResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Stock.ServiceModel">
<items>
<ItemResponse>
<articleCode>String</articleCode>
<errors xmlns:d4p1="http://schemas.datacontract.org/2004/07/Richemont.Booster2.Common.Poco.Entities">
<d4p1:LookupOfstring>
<d4p1:Description>String</d4p1:Description>
<d4p1:Id>String</d4p1:Id>
</d4p1:LookupOfstring>
</errors>
<stockTransferStatusId>0</stockTransferStatusId>
</ItemResponse>
</items>
</TransferStockBulkResponse>