Returns available filter values for timesheet search.
Headers
-
API token (can be retrieved from account settings)
-
ID of organization, for which the operation must be performed
Query parameters
-
Client contact identifier.
Multi-value supported. Example: value1;value2 -
Employee contact identifier.
Multi-value supported. Example: value1;value2 -
Date filter.Supports 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 (
GET
/api-v1/timesheet/filter
curl \
--request GET 'https://wyzio.app/api-v1/timesheet/filter'
Response examples (200)
{
"employees": [
{
"id": 42,
"name": "string",
"email": "string"
}
],
"clientIds": [
42
],
"orders": [
{
"id": 42,
"orderId": "string",
"name": "string",
"clientId": 42,
"clientContactId": 42
}
]
}