List bank accounts configured for payouts (read-only via API keys).List Bank Accounts#
Get list of bank accounts configured for payouts.Endpoint: GET /v1/payouts/bank-accountsThis endpoint is read-only via API keys. Creating, updating, and deleting bank accounts requires session authentication with OTP verification through the web dashboard.
{
"data": [
{
"id": "ba_abc123",
"account_number": "1234567890",
"account_name": "John Doe",
"bank_name": "GTBank",
"bank_code": "607",
"is_default": true,
"created_at": "2024-01-15T10:30:00Z"
}
]
}