users
Get a user's snooze history
Retrieves the snooze activity log for a specific user. Each entry shows a past snooze event with the snooze type (reason), start/end timestamps, and duration. Use this to audit a user's availability patterns over time.
Permission: No specific permission required. A valid API key is sufficient.
Monitoring: Not needed. This route works regardless of the Monitoring flag.
get/users/{userId}/snooze/log
Path parameters
userIdinteger required
The identifier of the user
Query parameters
limit_countinteger
Example:100
Maximum number of results to return per page. Default: server-defined.
limit_offsetinteger
Number of results to skip for pagination. Default: 0.
Response
Successful operation
Example response
{
"user_id": 234234,
"team_id": 234234,
"last_id_offset_setted": 19479170,
"limit_count_setted": 1,
"snooze_log_list_count": 1,
"snooze_log_list": [
{
"state": "state",
"name": "name",
"label": "label",
"label_fr": "label",
"label_en": "label",
"label_es": "label",
"comment": "a comment",
"creation_date": "2018-08-12T12:12:40.53Z",
"end_date": "2018-08-12T12:12:40.53Z"
}
],
"total_snooze_log_count": 1337
}