| POST | /stock/validate | Create Validate Stock Request |
|---|
import Foundation
import ServiceStack
public class CreateStockValidateRequest : Codable
{
/**
* Brand Trigram, e.g. CAR, IWC
*/
// @ApiMember(Description="Brand Trigram, e.g. CAR, IWC", IsRequired=true)
public var brand:String
/**
* POS Code e.g. ES100:102048
*/
// @ApiMember(Description="POS Code e.g. ES100:102048", IsRequired=true)
public var posCode:String
/**
* Validation Date
*/
// @ApiMember(Description="Validation Date", IsRequired=true)
public var date:Date
/**
* Items
*/
// @ApiMember(Description="Items", IsRequired=true)
public var items:[CreateStockValidateRequestItem] = []
required public init(){}
}
public class CreateStockValidateRequestItem : Codable
{
/**
* Legacy Article Code of the item
*/
// @ApiMember(Description="Legacy Article Code of the item", IsRequired=true)
public var articleCode:String
/**
* Stock Quantity
*/
// @ApiMember(Description="Stock Quantity", IsRequired=true)
public var quantity:Int
/**
* Serial Numbers
*/
// @ApiMember(Description="Serial Numbers")
public var serialNumbers:[String] = []
required public init(){}
}
public class CreateStockValidateResponse : Codable
{
/**
* Validation Id
*/
// @ApiMember(Description="Validation Id", IsRequired=true)
public var validationId:Int
required public init(){}
}
Swift CreateStockValidateRequest DTOs
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.
POST /stock/validate HTTP/1.1
Host: dev-api-booster.richemont.com
Accept: application/json
Content-Type: application/json
Content-Length: length
{"brand":"String","posCode":"String","date":"\/Date(-62135596800000-0000)\/","items":[{"articleCode":"String","quantity":0,"serialNumbers":["String"]}]}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"validationId":0}