Bank Accounts
Manage bank accounts that will be used for mailing cheques.
Create Bank Account
client.printMail.bankAccounts.create(BankAccountCreateParamsbody, RequestOptionsoptions?): BankAccount { id, accountNumber, bankCountryCode, 15 more }
POST/print-mail/v1/bank_accounts
List Bank Accounts
client.printMail.bankAccounts.list(BankAccountListParams { limit, search, skip } query?, RequestOptionsoptions?): SkipLimit<BankAccount { id, accountNumber, bankCountryCode, 15 more } >
GET/print-mail/v1/bank_accounts
Get Bank Account
client.printMail.bankAccounts.retrieve(stringid, RequestOptionsoptions?): BankAccount { id, accountNumber, bankCountryCode, 15 more }
GET/print-mail/v1/bank_accounts/{id}
Delete Bank Account
client.printMail.bankAccounts.delete(stringid, RequestOptionsoptions?): BankAccountDeleteResponse { id, deleted, object }
DELETE/print-mail/v1/bank_accounts/{id}