PagerDuty

PAGERDUTY_CREATE_HANDOFF_NOTIFICATION_RULE

Creates a new on-call handoff notification rule for a specific user in PagerDuty. This endpoint allows you to set up automated notifications for when a user is about to start or end their on-call shift. It defines how and when the user should be notified about upcoming handoffs, helping to ensure smooth transitions between on-call periods. Use this when you need to establish or modify the way a user is informed about their on-call responsibilities. The rule can be set for incoming shifts, outgoing shifts, or both, and can use various contact methods like email, phone, push notifications, or SMS. Note that this endpoint creates a new rule and does not modify existing ones.

Remote pagerduty

Other tools also called PAGERDUTY_CREATE_HANDOFF_NOTIFICATION_RULE? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "title": "Id",
      "description": "The ID of the resource."
    },
    "oncall__handoff__notification__rule__id": {
      "type": "string",
      "title": "Oncall  Handoff  Notification  Rule  Id",
      "description": "Id"
    },
    "oncall__handoff__notification__rule__handoff__type": {
      "enum": [
        "both",
        "oncall",
        "offcall"
      ],
      "type": "string",
      "title": "Oncall  Handoff  Notification  Rule  Handoff  Type",
      "default": "both",
      "description": "The type of handoff being created."
    },
    "oncall__handoff__notification__rule__notify__advance__in__minutes": {
      "type": "integer",
      "title": "Oncall  Handoff  Notification  Rule  Notify  Advance  In  Minutes",
      "description": "The delay before firing the rule, in minutes."
    }
  }
}