| GET | /posChain/{brand}/{posCode}/availableForTransfer | Get available POS within the same Chain where stock is transferable |
|---|
import java.math.*
import java.util.*
import net.servicestack.client.*
open class GetPosChainTransferAvailable
{
/**
* Brand
*/
@ApiMember(Description="Brand", IsRequired=true)
var brand:String? = null
/**
* POS Legacy Code
*/
@ApiMember(Description="POS Legacy Code", IsRequired=true)
var posCode:String? = null
}
open class GetPosChainTransferAvailableResponse : ArrayList<Pos>()
{
}
open class Pos
{
/**
* POS Code
*/
@ApiMember(Description="POS Code", IsRequired=true)
var posCode:String? = null
/**
* Name of the POS
*/
@ApiMember(Description="Name of the POS", IsRequired=true)
var name:String? = null
/**
* City of the POS
*/
@ApiMember(Description="City of the POS", IsRequired=true)
var city:String? = null
/**
* Address of the POS
*/
@ApiMember(Description="Address of the POS", IsRequired=true)
var address:String? = null
/**
* Country of the POS
*/
@ApiMember(Description="Country of the POS", IsRequired=true)
var country:String? = null
/**
* Brand of the POS
*/
@ApiMember(Description="Brand of the POS", IsRequired=true)
var brand:String? = null
}
Kotlin GetPosChainTransferAvailable DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /posChain/{brand}/{posCode}/availableForTransfer HTTP/1.1
Host: dev-api-booster.richemont.com
Accept: text/jsv
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length [ ]