Accounts
Endpoints for querying and creating checking/savings accounts.
POST/v2/accounts
Create a new ledger account for a specific customer.
GET/v2/accounts/{account_number}
Retrieve full details and current balance of an account.
Account Object
JSON
{
"account_number": "0123456789",
"customer_id": "cus_0987654321",
"account_type": "SAVINGS",
"balance": 500000.00,
"status": "ACTIVE"
}