| GET | /purchase/catalog | Get 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;
}
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 /purchase/catalog HTTP/1.1 Host: dev-api-booster.richemont.com Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
}