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

namespace Richemont.Booster2.PublicApi.Stock.ServiceModel
{
    public partial class Item
    {
        public Item()
        {
            serialNumbers = new List<string>{};
        }

        ///<summary>
        ///Article Code of the item to be transferred
        ///</summary>
        [ApiMember(Description="Article Code of the item to be transferred", IsRequired=true)]
        public virtual string articleCode { get; set; }

        ///<summary>
        ///Quantity of the the item to be transferred
        ///</summary>
        [ApiMember(Description="Quantity of the the item to be transferred", IsRequired=true)]
        public virtual int quantity { get; set; }

        ///<summary>
        ///Serial Numbers of the item to be transferred
        ///</summary>
        [ApiMember(Description="Serial Numbers of the item to be transferred")]
        public virtual List<string> serialNumbers { get; set; }
    }

    public partial class ItemResponse
    {
        public ItemResponse()
        {
            errors = new List<Lookup<String>>{};
        }

        ///<summary>
        ///Article Code of the item response
        ///</summary>
        [ApiMember(Description="Article Code of the item response", IsRequired=true)]
        public virtual string articleCode { get; set; }

        ///<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 virtual int stockTransferStatusId { get; set; }

        ///<summary>
        ///Errors of items
        ///</summary>
        [ApiMember(Description="Errors of items", IsRequired=true)]
        public virtual List<Lookup<String>> errors { get; set; }
    }

    public partial class TransferStockBulk
    {
        public TransferStockBulk()
        {
            items = new List<Item>{};
        }

        ///<summary>
        ///Brand Trigram
        ///</summary>
        [ApiMember(Description="Brand Trigram", IsRequired=true)]
        public virtual string brand { get; set; }

        ///<summary>
        ///POS of the stock origin
        ///</summary>
        [ApiMember(Description="POS of the stock origin", IsRequired=true)]
        public virtual string posCodeOrigin { get; set; }

        ///<summary>
        ///POS of the stock destination
        ///</summary>
        [ApiMember(Description="POS of the stock destination", IsRequired=true)]
        public virtual string posCodeDestination { get; set; }

        ///<summary>
        ///Items to be transferred
        ///</summary>
        [ApiMember(Description="Items to be transferred", IsRequired=true)]
        public virtual List<Item> items { get; set; }
    }

    public partial class TransferStockBulkResponse
    {
        public TransferStockBulkResponse()
        {
            items = new List<ItemResponse>{};
        }

        ///<summary>
        ///Response of items
        ///</summary>
        [ApiMember(Description="Response of items", IsRequired=true)]
        public virtual List<ItemResponse> items { get; set; }
    }

}

C# 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"}]}]}