Skip to main content
FuseFuse
IntegrationsPagerdutyActions

List PagerDuty maintenance windows

List maintenance windows for the bound account. Requires read.

Agent markdown

maintenance_windows.list · PagerDuty · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • read

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
page_sizeintegerNominimum 1; maximum 100
cursorstringNominLength 1; maxLength 512

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
maintenance_windowsarray<object>YesmaxItems 100
maintenance_windows[]objectYesadditionalProperties false
maintenance_windows[].idstringYesminLength 1; maxLength 100
maintenance_windows[].sequence_numberintegerNominimum 0
maintenance_windows[].start_timestringYesminLength 1; maxLength 64
maintenance_windows[].end_timestringYesminLength 1; maxLength 64
maintenance_windows[].descriptionstringYesmaxLength 10000
maintenance_windows[].servicesarray<object>YesmaxItems 100
maintenance_windows[].services[]objectYesadditionalProperties false
maintenance_windows[].services[].idstringYesminLength 1; maxLength 100
maintenance_windows[].services[].summarystringYesminLength 1; maxLength 200
maintenance_windows[].services[].html_urlstringNomaxLength 2048
maintenance_windows[].services[].typestringNomaxLength 64
next_cursorstringNominLength 1; maxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "maintenance_windows": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 100
          },
          "sequence_number": {
            "type": "integer",
            "minimum": 0
          },
          "start_time": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "end_time": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "description": {
            "type": "string",
            "maxLength": 10000
          },
          "services": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "id": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 100
                },
                "summary": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 200
                },
                "html_url": {
                  "type": "string",
                  "maxLength": 2048
                },
                "type": {
                  "type": "string",
                  "maxLength": 64
                }
              },
              "required": [
                "id",
                "summary"
              ]
            },
            "maxItems": 100
          }
        },
        "required": [
          "id",
          "start_time",
          "end_time",
          "description",
          "services"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "maintenance_windows"
  ]
}