Richemont.Booster2.PublicApi

<back to all web services

GetProductCollections

Requires Authentication
The following routes are available for this service:
GET/product-collection/{brand}/{posCode}Get customer product collections
import java.math.*
import java.util.*
import net.servicestack.client.*


open class GetProductCollections
{
    /**
    * Brand
    */
    @ApiMember(Description="Brand", IsRequired=true)
    var brand:String? = null

    /**
    * POS Legacy
    */
    @ApiMember(Description="POS Legacy", IsRequired=true)
    var posCode:String? = null
}

open class GetProductCollectionsResponse : ArrayList<ProductCollection>()
{
}

open class ProductCollection
{
    /**
    * Product Collection description
    */
    @ApiMember(Description="Product Collection description", IsRequired=true)
    var productCollection:String? = null

    /**
    * SAP ProductCollection ID, e.g. 'CA-1'
    */
    @ApiMember(Description="SAP ProductCollection ID, e.g. 'CA-1'", IsRequired=true)
    var sapProductCollectionId:String? = null

    /**
    * Product Collection description translation
    */
    @ApiMember(Description="Product Collection description translation", IsRequired=true)
    var translation:String? = null
}

Kotlin GetProductCollections DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /product-collection/{brand}/{posCode} HTTP/1.1 
Host: dev-api-booster.richemont.com 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

[
	
]