v1

latestOpenAPI 3.1.1LicenseRef-Proprietary2026-07-1310179223.1 KB
Time Off

Update Time Off Type

Update a time-off type's name, color, or settings.

put/resource-planner/time-off-types/{type_id}

Path parameters

type_idnumber required

Request body

namestring
colorstring
paidboolean
descriptionstring

Example request

{
  "name": "Sick",
  "color": "#4babe5",
  "paid": true,
  "description": "some notes"
}

Response

OK

idnumber
namestring
colorstring
paidboolean
descriptionstring

Example response

{
  "id": 876534,
  "name": "Sick",
  "color": "#4babe5",
  "paid": true,
  "description": "some notes"
}