- Update Actual Time Off
List Actual Time Off
Create Actual Time Off
Delete Actual Time Off
Get Actual Time Off
Update Actual Time Off
Updates an existing actual time off record. Only supplied fields are changed. Sending null for description clears the value; omitting description leaves it unchanged.
Security
ApiKey
The date on which the time off was recorded, in YYYY-MM-DD format.
time_off_categorystring or null(TimeOffCategory)
The category of time off.
Enum:"personal_time_off""holiday"
- Mock serverhttps://developer.getparallax.com/_mock/api-documentation/swagger/v1/actual-time-off/{id}
- Production Serverhttps://api.getparallax.com/v1/actual-time-off/{id}
- application/json-patch+json
- application/json
curl -i -X PATCH \
'https://developer.getparallax.com/_mock/api-documentation/swagger/v1/actual-time-off/{id}' \
-H 'Content-Type: application/json-patch+json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"person_id": "087e858e-473c-4f50-b5b0-c1df6c021550",
"recorded_date": "2019-08-24",
"hours": 0.1,
"time_off_category": "personal_time_off",
"description": "string"
}'