| 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 .xml suffix or ?format=xml
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: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <ArrayOfPos xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Stock.ServiceModel" />