Bank Accounts
Create a bank account
Create a new bank account for the authenticated team.
post/bank-accounts
Request body
Example request
{
"name": "Checking Account",
"currency": "USD",
"manual": false
}Response
Bank account created
Example response
{
"id": "b7e6c2a0-1f2d-4c3b-9a8e-123456789abc",
"name": "Checking Account",
"currency": "USD",
"type": "depository",
"enabled": true,
"balance": 1500.75,
"manual": false
}