| POST | /stock/{brand}/transfer | Transfer Stock from one POS to another |
|---|
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class TransferStockResponse:
# @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)
stock_transfer_status_id: int = 0
"""
Status of Stock Transfer: 1 means done, 2 means might take a while because consignment transfers need to be approved by SAP
"""
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class TransferStock:
# @ApiMember(Description="Brand Trigram", IsRequired=true)
brand: Optional[str] = None
"""
Brand Trigram
"""
# @ApiMember(Description="POS of the stock origin", IsRequired=true)
pos_code_origin: Optional[str] = None
"""
POS of the stock origin
"""
# @ApiMember(Description="POS of the stock destination", IsRequired=true)
pos_code_destination: Optional[str] = None
"""
POS of the stock destination
"""
# @ApiMember(Description="Article Code of the item to be transferred", IsRequired=true)
article_code: Optional[str] = None
"""
Article Code of the item to be transferred
"""
# @ApiMember(Description="Quantity of the the item to be transferred", IsRequired=true)
quantity: int = 0
"""
Quantity of the the item to be transferred
"""
# @ApiMember(Description="Serial Numbers of the item to be transferred")
serial_numbers: Optional[List[str]] = None
"""
Serial Numbers of the item to be transferred
"""
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}/transfer HTTP/1.1
Host: dev-api-booster.richemont.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<TransferStock xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Stock.ServiceModel">
<articleCode>String</articleCode>
<brand>String</brand>
<posCodeDestination>String</posCodeDestination>
<posCodeOrigin>String</posCodeOrigin>
<quantity>0</quantity>
<serialNumbers xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</serialNumbers>
</TransferStock>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <TransferStockResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Stock.ServiceModel"> <stockTransferStatusId>0</stockTransferStatusId> </TransferStockResponse>