Returns a list of employees available for payroll generation based on the specified filters.
Headers
-
API token (can be retrieved from account settings)
-
ID of organization, for which the operation must be performed
GET
/api-v1/payroll/employees
curl \
--request GET 'https://wyzio.app/api-v1/payroll/employees?organizationId=42&calendarYear=42'
Response examples (200)
[
{
"id": 42,
"organizationId": 42,
"staffId": 42,
"payrollCurrencyId": 42,
"staffPayslipId": 42,
"staffAccountId": 42,
"name": "string",
"startDate": "2026-05-04T09:42:00Z",
"endDate": "2026-05-04T09:42:00Z",
"salaryType": "MONTHLY",
"genderType": "MALE",
"birthday": "2026-05-04T09:42:00Z",
"isPayrollGenerated": true,
"payableToBankId": 42,
"orgEmployeeGroupIds": [
42
],
"orgEmployeeGroupName": "string",
"tenantId": 42
}
]