List Time-Offs
GET
/api/organizations/{organization_id}/time-off-requests/time-offs
POST /api/organizations/{organization_id}/time-off-requests
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/organizations//time-off-requests/time-offs?workerId&startTime&endTime'
Response Response Example
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"locationId": "123e4567-e89b-12d3-a456-426614174000",
"workerId": "123e4567-e89b-12d3-a456-426614174000",
"policyId": "123e4567-e89b-12d3-a456-426614174000",
"policy": {
"id": "string",
"name": "string",
"organizationId": "string",
"allowNegativeBalance": true,
"assignedStaffCount": 0,
"carryover": true,
"default": true,
"fullDayDuration": 0,
"limitSettings": "string",
"paid": true,
"requiresApproval": true,
"status": "Draft",
"type": {
"id": "string",
"name": "string",
"type": "Sick"
},
"typeId": "string",
"units": "days",
"createdAt": "string",
"updatedAt": "string"
},
"startTime": "2021-01-01T00:00:00.000Z",
"endTime": "2021-01-01T00:00:00.000Z",
"status": "pending",
"note": "I need to take time off",
"hourConfiguration": [
{
"date": "2021-01-01",
"hours": 8
},
{
"date": "2021-01-02",
"hours": 4
}
],
"timezone": "America/New_York",
"utcOffset": 240,
"isAllDay": false,
"submittedAt": "2021-01-01T00:00:00.000Z",
"remainingBalance": 10,
"totalHours": 10,
"workerPolicy": {
"id": "string",
"name": "Policy 1",
"hoursBalance": 0,
"isIncluded": true,
"availableBalance": 0
}
}
]
Request
Path Params
organization_id
string
required
Query Params
workerId
string
optional
Example:
1
startTime
string
optional
Example:
2021-01-01T12:30:00.000Z
endTime
string
optional
Example:
2021-01-01T16:30:00.000Z