Manage bank accounts with the API
curl -X GET "https://api.useadam.io/v1/adam/banks" \ -H "X-API-Key: your_secret_key"
curl -X GET "https://api.useadam.io/v1/adam/banks/bank-uuid" \ -H "X-API-Key: your_secret_key"
{ "status": "success", "message": "Bank retrieved successfully", "data": { "uuid": "bank-uuid", "name": "Chase Bank", "nuban": "1234567890", "account_name": "Business Account", "currency": "USD", "country": "US", "balance": 10000.00, "opening_balance": 5000.00 } }