UNPKG

@eczodex/issuers-sdk

Version:

SDK for interacting with Eczodex issuer APIs.

13 lines (12 loc) 513 B
/** * Create a new transfer for the given account. */ export declare function createBraleTransfer(accountId: string, transferData: any, token: string, idempotencyKey: string): Promise<any>; /** * Retrieve a specific transfer by ID. */ export declare function getBraleTransferById(accountId: string, transferId: string, token: string): Promise<any>; /** * Get all transfers associated with the specified account. */ export declare function listBraleTransfers(accountId: string, token: string): Promise<any>;