Headers
-
API token (can be retrieved from account settings)
-
ID of organization, for which the operation must be performed
Query parameters
-
Page Number
Default value is
1. -
Field to sort by
-
Sorting direction
Values are
ASCorDESC. Default value isASC. -
Size per page
Default value is
60. -
Payroll ID filter.
Multi-value supported. Example: value1;value2 -
Calendar year filter
-
Payroll month filter
Values are
JANUARY,FEBRUARY,MARCH,APRIL,MAY,JUNE,JULY,AUGUST,SEPTEMBER,OCTOBER,NOVEMBER, orDECEMBER. -
Payment date filterSupports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- 01/01/2026..31/12/2026
- >=01/01/2026
- <=01/01/2026
- <>01/01/2026
Use <>01/01/2026 to return only records where the selected date is not equal to the filter date.
- Range (
-
Employee contact ID filter.
Multi-value supported. Example: value1;value2 -
Currency code filter
-
Gross salary filterSupports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- <=100.00
- >=100.00
- <>100.00
- 100.00..200.00
Use
<>0to return only records where the selected amount is not equal to zero. - Range (
-
Net salary filterSupports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- <=100.00
- >=100.00
- <>100.00
- 100.00..200.00
Use
<>0to return only records where the selected amount is not equal to zero. - Range (
-
Payable amount filterSupports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- <=100.00
- >=100.00
- <>100.00
- 100.00..200.00
Use
<>0to return only records where the selected amount is not equal to zero. - Range (
-
Payroll status filter
Values are
UNPAID,PAID,PARTIALLY_PAID, orWIRED. -
Employee email filter
-
Whether the employee uses e-correspondence
-
Whether the payroll document has been sent to the employee
-
Organization employee group ID filter
curl \
--request GET 'https://wyzio.app/api-v1/payroll'
[
{
"id": 42,
"organizationId": 42,
"calendarYear": 42,
"monthNumber": 42,
"monthType": "JANUARY",
"paymentDate": "2026-05-04T09:42:00Z",
"employee": "string",
"employeeId": 42,
"currencyCode": "string",
"grossSalary": 42.0,
"netSalary": 42.0,
"payable": 42.0,
"status": "UNPAID",
"warnings": "string",
"employeeEmail": "string",
"employeeECorrespondence": true,
"organizationEmployeeGroupName": "string",
"organizationEmployeeGroupIds": [
42
],
"isDocSent": true
}
]