Get list of employees for payroll generation
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
GET
/api-v1/payroll/employees
curl \
--request GET 'http://wyzio.app/api-v1/payroll/employees' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
Response examples (200)
[
{
"birthday": "2025-05-04T09:42:00Z",
"endDate": "2025-05-04T09:42:00Z",
"genderType": "MALE",
"id": 42,
"isPayrollGenerated": true,
"name": "string",
"orgEmployeeGroupId": 42,
"orgEmployeeGroupName": "string",
"organizationId": 42,
"payableToBankId": 42,
"payrollCurrencyId": 42,
"salaryType": "MONTHLY",
"staffAccountId": 42,
"staffId": 42,
"staffPayslipId": 42,
"startDate": "2025-05-04T09:42:00Z",
"tenantId": 42
}
]