cURL
curl --request POST \ --url https://sandbox.intermezzo.ai/organizations/{organization_id}/employees/{employee_id}/bank-accounts \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "financialInstitutionName": "<string>", "accountNumber": "DE89370400440532013000", "routingNumber": "<string>", "iban": "<string>", "isActive": true, "isPrimary": false } '
{ "financialInstitutionName": "<string>", "id": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "accountNumber": "DE89370400440532013000", "routingNumber": "<string>", "iban": "<string>", "isActive": true, "isPrimary": false }
Create a new bank account and attach it to an employee
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Schema for creating bank accounts
"DE89370400440532013000"
9
34
Successful Response
Schema for bank account responses
Was this page helpful?