Richemont.Booster2.PublicApi

<back to all web services

GetStockLookup

Requires Authentication
The following routes are available for this service:
GET/stock/{brand}/lookupGet Serial Number and Article lookup from the database
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 GetStockLookup
    {
        ///<summary>
        ///Brand
        ///</summary>
        [ApiMember(Description="Brand", IsRequired=true)]
        public virtual string brand { get; set; }

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

        ///<summary>
        ///Serial Number
        ///</summary>
        [ApiMember(Description="Serial Number", IsRequired=true)]
        public virtual string serialNumber { get; set; }
    }

    public partial class GetStockLookupResponse
    {
        ///<summary>
        ///Exists in Stock?
        ///</summary>
        [ApiMember(Description="Exists in Stock?", IsRequired=true)]
        public virtual bool existsInStock { get; set; }

        ///<summary>
        ///Stock Locations / POSes
        ///</summary>
        [ApiMember(Description="Stock Locations / POSes", IsRequired=true)]
        public virtual Pos stockLocation { get; set; }
    }

    public partial class Pos
    {
        ///<summary>
        ///Name of the POS
        ///</summary>
        [ApiMember(Description="Name of the POS", IsRequired=true)]
        public virtual string name { get; set; }

        ///<summary>
        ///POS Code
        ///</summary>
        [ApiMember(Description="POS Code", IsRequired=true)]
        public virtual string posCode { get; set; }

        ///<summary>
        ///Pos Code To Be Displayed
        ///</summary>
        [ApiMember(Description="Pos Code To Be Displayed", IsRequired=true)]
        public virtual string posCodeToBeDisplayed { get; set; }

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

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

        ///<summary>
        ///Postal Code
        ///</summary>
        [ApiMember(Description="Postal Code", IsRequired=true)]
        public virtual string postalCode { get; set; }

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

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

}

C# GetStockLookup DTOs

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

HTTP + CSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /stock/{brand}/lookup HTTP/1.1 
Host: dev-api-booster.richemont.com 
Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"existsInStock":false,"stockLocation":{"name":"String","posCode":"String","posCodeToBeDisplayed":"String","country":"String","city":"String","postalCode":"String","state":"String","street":"String"}}