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
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class GetStockLookup
    {
        /**
        * Brand
        */
        @ApiMember(Description="Brand", IsRequired=true)
        public String brand = null;

        /**
        * Article Code
        */
        @ApiMember(Description="Article Code", IsRequired=true)
        public String articleCode = null;

        /**
        * Serial Number
        */
        @ApiMember(Description="Serial Number", IsRequired=true)
        public String serialNumber = null;
        
        public String getBrand() { return brand; }
        public GetStockLookup setBrand(String value) { this.brand = value; return this; }
        public String getArticleCode() { return articleCode; }
        public GetStockLookup setArticleCode(String value) { this.articleCode = value; return this; }
        public String getSerialNumber() { return serialNumber; }
        public GetStockLookup setSerialNumber(String value) { this.serialNumber = value; return this; }
    }

    public static class GetStockLookupResponse
    {
        /**
        * Exists in Stock?
        */
        @ApiMember(Description="Exists in Stock?", IsRequired=true)
        public Boolean existsInStock = null;

        /**
        * Stock Locations / POSes
        */
        @ApiMember(Description="Stock Locations / POSes", IsRequired=true)
        public Pos stockLocation = null;
        
        public Boolean isExistsInStock() { return existsInStock; }
        public GetStockLookupResponse setExistsInStock(Boolean value) { this.existsInStock = value; return this; }
        public Pos getStockLocation() { return stockLocation; }
        public GetStockLookupResponse setStockLocation(Pos value) { this.stockLocation = value; return this; }
    }

    public static class Pos
    {
        /**
        * Name of the POS
        */
        @ApiMember(Description="Name of the POS", IsRequired=true)
        public String name = null;

        /**
        * POS Code
        */
        @ApiMember(Description="POS Code", IsRequired=true)
        public String posCode = null;

        /**
        * Pos Code To Be Displayed
        */
        @ApiMember(Description="Pos Code To Be Displayed", IsRequired=true)
        public String posCodeToBeDisplayed = null;

        /**
        * Country of the POS
        */
        @ApiMember(Description="Country of the POS", IsRequired=true)
        public String country = null;

        /**
        * City of the POS
        */
        @ApiMember(Description="City of the POS", IsRequired=true)
        public String city = null;

        /**
        * Postal Code
        */
        @ApiMember(Description="Postal Code", IsRequired=true)
        public String postalCode = null;

        /**
        * State
        */
        @ApiMember(Description="State", IsRequired=true)
        public String state = null;

        /**
        * Street
        */
        @ApiMember(Description="Street", IsRequired=true)
        public String street = null;
        
        public String getName() { return name; }
        public Pos setName(String value) { this.name = value; return this; }
        public String getPosCode() { return posCode; }
        public Pos setPosCode(String value) { this.posCode = value; return this; }
        public String getPosCodeToBeDisplayed() { return posCodeToBeDisplayed; }
        public Pos setPosCodeToBeDisplayed(String value) { this.posCodeToBeDisplayed = value; return this; }
        public String getCountry() { return country; }
        public Pos setCountry(String value) { this.country = value; return this; }
        public String getCity() { return city; }
        public Pos setCity(String value) { this.city = value; return this; }
        public String getPostalCode() { return postalCode; }
        public Pos setPostalCode(String value) { this.postalCode = value; return this; }
        public String getState() { return state; }
        public Pos setState(String value) { this.state = value; return this; }
        public String getStreet() { return street; }
        public Pos setStreet(String value) { this.street = value; return this; }
    }

}

Java GetStockLookup 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.

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

<GetStockLookupResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Stock.ServiceModel">
  <existsInStock>false</existsInStock>
  <stockLocation>
    <city>String</city>
    <country>String</country>
    <name>String</name>
    <posCode>String</posCode>
    <posCodeToBeDisplayed>String</posCodeToBeDisplayed>
    <postalCode>String</postalCode>
    <state>String</state>
    <street>String</street>
  </stockLocation>
</GetStockLookupResponse>