Skip to main content
FuseFuse
IntegrationsPagerdutyActions

List PagerDuty incidents

List incidents for the bound PagerDuty account. Requires read. Returns one bounded page.

Agent markdown

incidents.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
incidentsarray<object>YesmaxItems 100
incidents[]objectYesadditionalProperties false
incidents[].idstringYesminLength 1; maxLength 100
incidents[].incident_numberintegerYesminimum 1
incidents[].titlestringYesminLength 1; maxLength 1024
incidents[].statusstringYesminLength 1; maxLength 64
incidents[].urgencystringYesenum high | low
incidents[].html_urlstringYesmaxLength 2048
incidents[].serviceobjectYesadditionalProperties false
incidents[].service.idstringYesminLength 1; maxLength 100
incidents[].service.summarystringYesminLength 1; maxLength 200
incidents[].service.html_urlstringNomaxLength 2048
incidents[].service.typestringNomaxLength 64
incidents[].assignmentsarray<object>YesmaxItems 25
incidents[].assignments[]objectYesadditionalProperties false
incidents[].assignments[].assigneeobjectYesadditionalProperties false
incidents[].assignments[].assignee.idstringYesminLength 1; maxLength 100
incidents[].assignments[].assignee.summarystringYesminLength 1; maxLength 200
incidents[].assignments[].assignee.html_urlstringNomaxLength 2048
incidents[].assignments[].assignee.typestringNomaxLength 64
incidents[].assignments[].atstringNominLength 1; maxLength 64
incidents[].escalation_policyobjectNoadditionalProperties false
incidents[].escalation_policy.idstringYesminLength 1; maxLength 100
incidents[].escalation_policy.summarystringYesminLength 1; maxLength 200
incidents[].escalation_policy.html_urlstringNomaxLength 2048
incidents[].escalation_policy.typestringNomaxLength 64
incidents[].created_atstringYesminLength 1; maxLength 64
incidents[].updated_atstringNominLength 1; maxLength 64
incidents[].resolved_atstringNominLength 1; maxLength 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": {
    "incidents": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 100
          },
          "incident_number": {
            "type": "integer",
            "minimum": 1
          },
          "title": {
            "type": "string",
            "minLength": 1,
            "maxLength": 1024
          },
          "status": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "urgency": {
            "type": "string",
            "enum": [
              "high",
              "low"
            ]
          },
          "html_url": {
            "type": "string",
            "maxLength": 2048
          },
          "service": {
            "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"
            ]
          },
          "assignments": {
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "assignee": {
                  "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"
                  ]
                },
                "at": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 64
                }
              },
              "required": [
                "assignee"
              ]
            },
            "maxItems": 25
          },
          "escalation_policy": {
            "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"
            ]
          },
          "created_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "updated_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "resolved_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          }
        },
        "required": [
          "id",
          "incident_number",
          "title",
          "status",
          "urgency",
          "html_url",
          "service",
          "assignments",
          "created_at"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "incidents"
  ]
}