GET
/
bankAccounts
/
{bankAccountId}
curl --request GET \
  --url https://test.onlinecheckwriter.com/api/v3/bankAccounts/{bankAccountId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "3Ez2Ggn8JP4qQgA",
    "bankId": "6VoW41bgPVG589l",
    "name": "Demo Bank 1333",
    "nickName": "company1333334",
    "accountNumber": "34234234234222",
    "addressLine1": "Test Address1",
    "addressLine2": null,
    "city": "Downey",
    "state": "CA",
    "zip": "90242",
    "phone": null,
    "isVerified": false,
    "createdDate": "11-12-2024",
    "bankAccountId": "XP3Ez2Ggn8JP4qQgAYd",
    "RoutingNumber": "011000015",
    "webUrl": "https://staging.web.ocw.sebipay.com/manage/bank-accounts/index?id=3Ez2Ggn8JP4qQgA"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

bankAccountId
string
required

The unique identifier of the bank account.

Response

200
application/json
Successful response with the details of a single bank account.
success
boolean
Example:

true

data
object