Retrieves a specific schedule rotation user by id
curl --request GET \
--url https://api.rootly.com/v1/schedule_rotation_users/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "a8c8c62d-6881-4a61-9344-6f022f12b114",
"type": "schedule_rotation_users",
"attributes": {
"schedule_rotation_id": "c6f8adb8-94cd-4b7c-bd7f-abc1a2e716ed",
"user_id": 409,
"position": 2,
"created_at": "2025-07-29T05:04:07.673-07:00",
"updated_at": "2025-07-29T05:04:07.678-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
schedule_rotation_user found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/schedule_rotation_users/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "a8c8c62d-6881-4a61-9344-6f022f12b114",
"type": "schedule_rotation_users",
"attributes": {
"schedule_rotation_id": "c6f8adb8-94cd-4b7c-bd7f-abc1a2e716ed",
"user_id": 409,
"position": 2,
"created_at": "2025-07-29T05:04:07.673-07:00",
"updated_at": "2025-07-29T05:04:07.678-07:00"
}
}
}