Richemont.Booster2.PublicApi

<back to all web services

GetCatalog

Requires Authentication
The following routes are available for this service:
GET/purchase/catalogGet a list of purchasable articles for the given Pos and Brand
"use strict";
export class Article {
    /** @param {{articleCode?:string,price?:number,currency?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /**
     * @type {string}
     * @description Reference ID / Code of the Article */
    articleCode;
    /**
     * @type {number}
     * @description Price of the article */
    price;
    /**
     * @type {string}
     * @description Currency of the price of the article */
    currency;
}
export class GetCatalogResponse {
    /** @param {{articles?:Article[]}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {Article[]} */
    articles;
}
export class GetCatalog {
    /** @param {{posCode?:string,brand?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /**
     * @type {string}
     * @description POS Legacy */
    posCode;
    /**
     * @type {string}
     * @description Brand Trigram of the POS */
    brand;
}

JavaScript GetCatalog 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

HTTP + JSON

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

GET /purchase/catalog HTTP/1.1 
Host: dev-api-booster.richemont.com 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{}