UNPKG

assembly-payments

Version:
16 lines (15 loc) 597 B
import { ClientInterface } from '../client'; import { TokensRequestBody, TokensResponse } from '../types'; declare const _default: (client: ClientInterface) => { /** * @description Exchange client application credentials for a bearer token. Please ensure to call the auth issuing server as described at https://developer.assemblypayments.com/reference#authentication * * @tags Authentication * @name Token * @summary Token * @request POST:/tokens * @secure */ token: (data: TokensRequestBody) => Promise<TokensResponse>; }; export default _default;