Get employee bank account information
Returns employee bank account details including IBAN, BIC, bank name, and account owner name.
Note: This endpoint is only available for employee accounts. Bank data is typically used for payroll processing.
GET
/account/employee/bank-dataAuthorization
AuthorizationOAuth2 access token · headerrequiredScopes:
api:reador
AuthorizationBearer token (JWT) · headerrequiredResponses
200
bankAccountBICstring | nullrequiredBank BIC code
bankAccountIBANstring | nullrequiredBank IBAN
bankAccountNamestring | nullrequiredBank account name
bankAccountOwnerstring | nullrequiredAccount owner name
idstringrequiredEmployee ID
401Unauthorized - Invalid or missing authentication token
403Forbidden - Insufficient API scopes or permissions
404Employee bank data not found
Request
curl -X GET "https://leadtime.app/api/public/account/employee/bank-data" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"const response = await fetch("https://leadtime.app/api/public/account/employee/bank-data", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
});import requests
response = requests.get(
"https://leadtime.app/api/public/account/employee/bank-data",
headers={
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
},
)Response
{
"bankAccountBIC": "DEUTDEFF",
"bankAccountIBAN": "DE89370400440532013000",
"bankAccountName": "Deutsche Bank",
"bankAccountOwner": "John Doe",
"id": "emp_123"
}Unauthorized - Invalid or missing authentication token
Forbidden - Insufficient API scopes or permissions
Employee bank data not found