users
Get a user's weekly planning
Retrieves a user's weekly availability planning — the time slots during which the user is reachable via Ringover. The response contains a planning for each day of the week with start/end time ranges. If planning is not enabled in the user's settings, the is_planning field will be false and the time ranges will be empty.
Permission: Users Read required.
Monitoring impact:
- OFF: Returns planning only if userId matches your own user ID. Requesting another user's planning returns 404.
- ON: Returns any user's planning in the team.
get/users/{userId}/plannings
Path parameters
userIdinteger required
The identifier of the user
Response
Successful operation
Example response
{
"team_id": 123456,
"user_id": 123456,
"tz_identifier": "Europe/Paris",
"tz_now": "2020-04-08T10:34:28+02:00",
"planning_enable": true,
"is_planning": true,
"time_ranges": [
{
"end": 1440
}
]
}