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

accountNumberstring

Bank account number

accountHolderNamestring

Name of the account holder

bankNamestring

Name of the bank

branchNamestring nullable

Bank branch name (optional)

swiftCodestring nullable

SWIFT/BIC code for international transfers (optional)

localBankCodestring nullable

Local bank code (e.g., routing number, sort code, IFSC) - optional

accountType'PERSONAL' | 'BUSINESS' | 'SAVINGS' | 'CHECKING' | 'UNKNOWN'

Type of bank account

currencystring

ISO 4217 currency code

countrystring

ISO 3166-1 alpha-3 country code where the bank is located

Example response

{
  "accountNumber": "1234567890",
  "accountHolderName": "Foo Bar",
  "bankName": "Swiss National Bank",
  "branchName": "Zurich Branch",
  "swiftCode": "SNBZCHZZ",
  "localBankCode": "12345",
  "accountType": "PERSONAL",
  "currency": "CHF",
  "country": "CHE"
}