| GET | /stock/{brand}/lookup | Get 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; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
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/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"existsInStock":false,"stockLocation":{"name":"String","posCode":"String","posCodeToBeDisplayed":"String","country":"String","city":"String","postalCode":"String","state":"String","street":"String"}}