v1
latestOpenAPI 3.1.02026-07-242735131.1 MBEmployee Bank Account
Update employee bank account
Upserts the authenticated employee's bank account details.
This endpoint requires and returns country-specific data. The exact fields vary depending on which country the authenticated employee's employment is in. Query the Show form schema endpoint with bank_account_details as the form name to discover the schema for a given country.
Scopes
| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage employments (employments) | - | Manage bank accounts (bank_account:write) |
put/v1/employee/bank-account
Query parameters
Version of the bank_account_details form schema
Request body
Example request
{
"bank_account_details": {
"account_holder_name": "Jane Smith",
"iban": "GB29NWBK60161331926819"
}
}Response
Success
Example response
{
"data": {
"employment": {
"contract_origin": "remote_contract",
"id": "20a72f86-employment-id-9e4942a902ff",
"personal_details": {},
"status": "created",
"type": "employee",
"updated_at": "2024-01-15T10:30:00Z",
"user_status": "active"
}
}
}