latestOpenAPI 3.1.1Proprietary – Contact us for usage terms2026-08-20173183551.4 KB

9da73dd2f99e

users

Replace a user's planning for a specific day

Replaces a user's availability planning for a single day of the week. This is a more targeted alternative to PUT /users/{userId}/plannings — use it when you only need to modify one day without replacing the entire week. Planning must be enabled in the user's settings (is_planning = true). If planning is disabled, the request returns 406.

Permission: Users Write required.

Monitoring: Required. Modifying another user's planning is a supervisory operation. Returns 401 Unauthorized if Monitoring is OFF on your API key.

put/users/{userId}/plannings/{day}

Path parameters

userIdinteger required

The identifier of the user

day'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday' | 'sunday' required

The day of planning

Request body

startinteger

Start time in minutes (0 => 0:00)

endinteger

End time in minutes (1440 => 24:00)

Example request

[
  {
    "end": 1440
  }
]

Response

Successful operation