Retrieves a specific On Call Shadow configuration by ID
curl --request GET \
--url https://api.rootly.com/v1/on_call_shadows/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "81d85d2a-4e72-48ef-b91d-892808625898",
"type": "on_call_shadows",
"attributes": {
"schedule_id": "07b51e68-c5f6-4701-b970-74f9128ffa68",
"shadowable_type": "User",
"shadowable_id": "343",
"shadow_user_id": 342,
"starts_at": "2025-08-22T01:46:23.000-07:00",
"ends_at": "2025-08-22T23:46:23.000-07:00",
"created_at": "2025-08-21T23:46:23.393-07:00",
"updated_at": "2025-08-21T23:46:23.393-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
override shift found
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/on_call_shadows/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "81d85d2a-4e72-48ef-b91d-892808625898",
"type": "on_call_shadows",
"attributes": {
"schedule_id": "07b51e68-c5f6-4701-b970-74f9128ffa68",
"shadowable_type": "User",
"shadowable_id": "343",
"shadow_user_id": 342,
"starts_at": "2025-08-22T01:46:23.000-07:00",
"ends_at": "2025-08-22T23:46:23.000-07:00",
"created_at": "2025-08-21T23:46:23.393-07:00",
"updated_at": "2025-08-21T23:46:23.393-07:00"
}
}
}