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": "67ee82bb-ab8a-490d-a45c-ec44f8d397f9",
"type": "on_call_shadows",
"attributes": {
"schedule_id": "8765eb3e-3ad1-4804-b837-6cf5ce7bdfc2",
"shadowable_type": "User",
"shadowable_id": "343",
"shadow_user_id": 342,
"starts_at": "2025-08-01T23:50:33.000-07:00",
"ends_at": "2025-08-02T21:50:33.000-07:00",
"created_at": "2025-08-01T21:50:33.663-07:00",
"updated_at": "2025-08-01T21:50:33.663-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": "67ee82bb-ab8a-490d-a45c-ec44f8d397f9",
"type": "on_call_shadows",
"attributes": {
"schedule_id": "8765eb3e-3ad1-4804-b837-6cf5ce7bdfc2",
"shadowable_type": "User",
"shadowable_id": "343",
"shadow_user_id": 342,
"starts_at": "2025-08-01T23:50:33.000-07:00",
"ends_at": "2025-08-02T21:50:33.000-07:00",
"created_at": "2025-08-01T21:50:33.663-07:00",
"updated_at": "2025-08-01T21:50:33.663-07:00"
}
}
}