Richemont.Booster2.PublicApi

<back to all web services

TransferStock

Requires Authentication
The following routes are available for this service:
POST/stock/{brand}/transferTransfer Stock from one POS to another
namespace Richemont.Booster2.PublicApi.Stock.ServiceModel

open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type TransferStockResponse() = 
        ///<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)>]
        member val stockTransferStatusId:Int32 = new Int32() with get,set

    [<AllowNullLiteral>]
    type TransferStock() = 
        ///<summary>
        ///Brand Trigram
        ///</summary>
        [<ApiMember(Description="Brand Trigram", IsRequired=true)>]
        member val brand:String = null with get,set

        ///<summary>
        ///POS of the stock origin
        ///</summary>
        [<ApiMember(Description="POS of the stock origin", IsRequired=true)>]
        member val posCodeOrigin:String = null with get,set

        ///<summary>
        ///POS of the stock destination
        ///</summary>
        [<ApiMember(Description="POS of the stock destination", IsRequired=true)>]
        member val posCodeDestination:String = null with get,set

        ///<summary>
        ///Article Code of the item to be transferred
        ///</summary>
        [<ApiMember(Description="Article Code of the item to be transferred", IsRequired=true)>]
        member val articleCode:String = null with get,set

        ///<summary>
        ///Quantity of the the item to be transferred
        ///</summary>
        [<ApiMember(Description="Quantity of the the item to be transferred", IsRequired=true)>]
        member val quantity:Int32 = new Int32() with get,set

        ///<summary>
        ///Serial Numbers of the item to be transferred
        ///</summary>
        [<ApiMember(Description="Serial Numbers of the item to be transferred")>]
        member val serialNumbers:ResizeArray<String> = new ResizeArray<String>() with get,set

F# TransferStock DTOs

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

HTTP + 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>