Richemont.Booster2.PublicApi

<back to all web services

TransferStockBulk

Requires Authentication
The following routes are available for this service:
POST/stock/{brand}/transferBulkBulk 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 ItemResponse:
    # @ApiMember(Description="Article Code of the item response", IsRequired=true)
    article_code: Optional[str] = None
    """
    Article Code of the item response
    """


    # @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
    """


    # @ApiMember(Description="Errors of items", IsRequired=true)
    errors: Optional[List[Lookup[str]]] = None
    """
    Errors of items
    """


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class TransferStockBulkResponse:
    # @ApiMember(Description="Response of items", IsRequired=true)
    items: Optional[List[ItemResponse]] = None
    """
    Response of items
    """


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Item:
    # @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
    """


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class TransferStockBulk:
    # @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="Items to be transferred", IsRequired=true)
    items: Optional[List[Item]] = None
    """
    Items to be transferred
    """

Python TransferStockBulk DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

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: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	brand: String,
	posCodeOrigin: String,
	posCodeDestination: String,
	items: 
	[
		{
			articleCode: String,
			quantity: 0,
			serialNumbers: 
			[
				String
			]
		}
	]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	items: 
	[
		{
			articleCode: String,
			stockTransferStatusId: 0,
			errors: 
			[
				{
					id: String,
					description: String
				}
			]
		}
	]
}