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": "224ec8fc-9b1a-4383-a33e-0571bf19b41c",
"type": "schedule_rotation_users",
"attributes": {
"schedule_rotation_id": "765a0216-16b5-4dcd-b251-9ad6bf69e8b4",
"user_id": 409,
"position": 2,
"created_at": "2025-08-18T10:38:08.846-07:00",
"updated_at": "2025-08-18T10:38:08.851-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": "224ec8fc-9b1a-4383-a33e-0571bf19b41c",
"type": "schedule_rotation_users",
"attributes": {
"schedule_rotation_id": "765a0216-16b5-4dcd-b251-9ad6bf69e8b4",
"user_id": 409,
"position": 2,
"created_at": "2025-08-18T10:38:08.846-07:00",
"updated_at": "2025-08-18T10:38:08.851-07:00"
}
}
}