assembly-payments
Version:
Assembly Payments API Typescript/Javascript Bindings
22 lines (19 loc) • 528 B
text/typescript
import { Client } from '../client';
import { Marketplace } from '../types';
export default (client: 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<Marketplace>({
url: `/marketplace`,
method: 'GET',
secure: true,
}),
});