| 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 .xml suffix or ?format=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>