POST
/
v1
/
schedules
/
{schedule_id}
/
on_call_shadows
creates an shadow configuration
curl --request POST \
  --url https://api.rootly.com/v1/schedules/{schedule_id}/on_call_shadows \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "on_call_shadows",
    "attributes": {
      "shadowable_type": "User",
      "shadowable_id": "<string>",
      "shadow_user_id": 123,
      "starts_at": "2023-11-07T05:31:56Z",
      "ends_at": "2023-11-07T05:31:56Z"
    }
  }
}'
{
  "data": {
    "id": "6a28c9e6-84df-4728-9719-3e75c3cdce95",
    "type": "on_call_shadows",
    "attributes": {
      "schedule_id": "fea54314-45b7-459f-940f-53bb0bb1aa97",
      "shadowable_type": "User",
      "shadowable_id": "342",
      "shadow_user_id": 341,
      "starts_at": "2025-07-11T12:40:50.069-07:00",
      "ends_at": "2025-07-12T12:40:50.069-07:00",
      "created_at": "2025-07-09T12:40:50.260-07:00",
      "updated_at": "2025-07-09T12:40:50.260-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

schedule_id
string
required

Body

application/vnd.api+json

Response

201
application/vnd.api+json

shadow shift is created

The response is of type object.