Employee Bank Details
Retrieve employee bank account details
Get employee bank account information for salary payments and financial transactions.
This endpoint provides access to the employee's bank account details including account number, bank name, SWIFT code, and other banking information required for processing salary payments.
get/v1/employees/{employeeId}/bank
Path parameters
employeeIdstring uuid required
Unique identifier for the employee
Response
Employee bank details retrieved successfully
Example response
{
"accountNumber": "1234567890",
"accountHolderName": "Foo Bar",
"bankName": "Swiss National Bank",
"branchName": "Zurich Branch",
"swiftCode": "SNBZCHZZ",
"localBankCode": "12345",
"accountType": "PERSONAL",
"currency": "CHF",
"country": "CHE"
}