Skip to main content
FuseFuse
IntegrationsPagerdutyActions

Get PagerDuty incident

Get one incident by id. Requires read.

Agent markdown

incidents.get · 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
incident_idstringYesminLength 1; maxLength 100

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 100
incident_numberintegerYesminimum 1
titlestringYesminLength 1; maxLength 1024
statusstringYesminLength 1; maxLength 64
urgencystringYesenum high | low
html_urlstringYesmaxLength 2048
serviceobjectYesadditionalProperties false
service.idstringYesminLength 1; maxLength 100
service.summarystringYesminLength 1; maxLength 200
service.html_urlstringNomaxLength 2048
service.typestringNomaxLength 64
assignmentsarray<object>YesmaxItems 25
assignments[]objectYesadditionalProperties false
assignments[].assigneeobjectYesadditionalProperties false
assignments[].assignee.idstringYesminLength 1; maxLength 100
assignments[].assignee.summarystringYesminLength 1; maxLength 200
assignments[].assignee.html_urlstringNomaxLength 2048
assignments[].assignee.typestringNomaxLength 64
assignments[].atstringNominLength 1; maxLength 64
escalation_policyobjectNoadditionalProperties false
escalation_policy.idstringYesminLength 1; maxLength 100
escalation_policy.summarystringYesminLength 1; maxLength 200
escalation_policy.html_urlstringNomaxLength 2048
escalation_policy.typestringNomaxLength 64
created_atstringYesminLength 1; maxLength 64
updated_atstringNominLength 1; maxLength 64
resolved_atstringNominLength 1; maxLength 64

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "incident_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 100
    }
  },
  "required": [
    "incident_id"
  ]
}
Output
{
  "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"
  ]
}