| GET | /stock/{brand}/lookup | Get 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; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=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"}}