Skip to main content
DELETE
/
schedule
/
v1
/
planners
/
{plannerId}
/
free-days
Delete Free Days from Employees in Planner
curl --request DELETE \
  --url https://api-{region}.sesametime.com/schedule/v1/planners/{plannerId}/free-days \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "from": "2026-02-10",
  "to": "2026-02-12",
  "employeeIds": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}
'
{
  "data": "",
  "meta": {
    "currentPage": 1,
    "lastPage": 1,
    "total": 1,
    "perPage": 1
  }
}

Documentation Index

Fetch the complete documentation index at: https://apidocs.sesametime.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

plannerId
string<uuid>
required

The planner ID

Body

application/json
from
string<date>
required

Start of the range (Y-m-d). Inclusive.

Example:

"2026-02-10"

to
string<date>
required

End of the range (Y-m-d). Inclusive. Max range: 3 years.

Example:

"2026-02-12"

employeeIds
string<uuid>[]
required

Employees to delete the free days from.

Response

Object

data
string
Example:

""

meta
object