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