Skip to main content
GET
/
organizations
/
{organization_id}
/
employees
/
{employee_id}
/
bank-accounts
Get Employee Bank Accounts
curl --request GET \
  --url https://sandbox.intermezzo.ai/organizations/{organization_id}/employees/{employee_id}/bank-accounts \
  --header 'Authorization: Bearer <token>'
[
  {
    "financialInstitutionName": "Deutsche Bank",
    "accountNumber": "DE89370400440532013000",
    "routingNumber": "<string>",
    "iban": "<string>",
    "isActive": true,
    "isPrimary": false,
    "id": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

organization_id
required
employee_id
required

Response

Successful Response

financialInstitutionName
string
required
Examples:

"Deutsche Bank"

id
string
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required
accountNumber
string | null
Examples:

"DE89370400440532013000"

routingNumber
string | null
Required string length: 9
iban
string | null
isActive
boolean
default:true
isPrimary
boolean
default:false
I