assembly-payments
Version:
Assembly Payments API Typescript/Javascript Bindings
19 lines (18 loc) • 531 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = (client) => ({
/**
* @description Show details of your **Platform**, providing access to your configuration and related **User** and **Company**.
*
* @tags Marketplaces
* @name ShowMarketplace
* @summary Show Marketplace
* @request GET:/marketplace
* @secure
*/
showMarketplace: () => client.request({
url: `/marketplace`,
method: 'GET',
secure: true,
}),
});
;