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
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports Richemont.Booster2.PublicApi.Stock.ServiceModel

Namespace Global

    Namespace Richemont.Booster2.PublicApi.Stock.ServiceModel

        Public Partial Class Item
            Public Sub New()
                serialNumbers = New List(Of String)
            End Sub

            '''<Summary>
            '''Article Code of the item to be transferred
            '''</Summary>
            <ApiMember(Description:="Article Code of the item to be transferred", IsRequired:=true)>
            Public Overridable Property articleCode As String

            '''<Summary>
            '''Quantity of the the item to be transferred
            '''</Summary>
            <ApiMember(Description:="Quantity of the the item to be transferred", IsRequired:=true)>
            Public Overridable Property quantity As Integer

            '''<Summary>
            '''Serial Numbers of the item to be transferred
            '''</Summary>
            <ApiMember(Description:="Serial Numbers of the item to be transferred")>
            Public Overridable Property serialNumbers As List(Of String)
        End Class

        Public Partial Class ItemResponse
            Public Sub New()
                errors = New List(Of Lookup(Of String))
            End Sub

            '''<Summary>
            '''Article Code of the item response
            '''</Summary>
            <ApiMember(Description:="Article Code of the item response", IsRequired:=true)>
            Public Overridable Property articleCode As String

            '''<Summary>
            '''Status of Stock Transfer: 1 means done, 2 means might take a while because consignment transfers need to be approved by SAP
            '''</Summary>
            <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 Overridable Property stockTransferStatusId As Integer

            '''<Summary>
            '''Errors of items
            '''</Summary>
            <ApiMember(Description:="Errors of items", IsRequired:=true)>
            Public Overridable Property errors As List(Of Lookup(Of String))
        End Class

        Public Partial Class TransferStockBulk
            Public Sub New()
                items = New List(Of Item)
            End Sub

            '''<Summary>
            '''Brand Trigram
            '''</Summary>
            <ApiMember(Description:="Brand Trigram", IsRequired:=true)>
            Public Overridable Property brand As String

            '''<Summary>
            '''POS of the stock origin
            '''</Summary>
            <ApiMember(Description:="POS of the stock origin", IsRequired:=true)>
            Public Overridable Property posCodeOrigin As String

            '''<Summary>
            '''POS of the stock destination
            '''</Summary>
            <ApiMember(Description:="POS of the stock destination", IsRequired:=true)>
            Public Overridable Property posCodeDestination As String

            '''<Summary>
            '''Items to be transferred
            '''</Summary>
            <ApiMember(Description:="Items to be transferred", IsRequired:=true)>
            Public Overridable Property items As List(Of Item)
        End Class

        Public Partial Class TransferStockBulkResponse
            Public Sub New()
                items = New List(Of ItemResponse)
            End Sub

            '''<Summary>
            '''Response of items
            '''</Summary>
            <ApiMember(Description:="Response of items", IsRequired:=true)>
            Public Overridable Property items As List(Of ItemResponse)
        End Class
    End Namespace
End Namespace

VB.NET TransferStockBulk DTOs

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

HTTP + OTHER

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

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

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