PagerDuty

PAGERDUTY_CREATE_SCHEDULE_OVERRIDES_CONFIGURATION

Creates one or more overrides for a specific schedule in PagerDuty. This endpoint allows you to temporarily modify the on-call schedule by assigning different users for specific time periods. It's useful for handling planned absences, shift swaps, or special coverage requirements without permanently altering the regular schedule. The overrides are applied to the schedule identified by the {id} parameter in the endpoint URL. Multiple overrides can be created in a single request, enabling efficient batch modifications to the schedule. Each override specifies a start time, end time, and the user who will be on call during that period. The endpoint should be used when temporary changes to the on-call rotation are needed. It does not modify the underlying schedule configuration.

Remote pagerduty

Other tools also called PAGERDUTY_CREATE_SCHEDULE_OVERRIDES_CONFIGURATION? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "title": "Id",
      "description": "The ID of the resource."
    },
    "overrides": {
      "type": "array",
      "items": {
        "properties": {}
      },
      "title": "Overrides",
      "description": "Overrides"
    }
  }
}