Skip to main content
FuseFuse
IntegrationsPagerdutyActions

Create PagerDuty incident note

Append a note to an incident. Requires write. Unsafe and not exposed over MCP.

Agent markdown

incidents.notes.create · PagerDuty · v1

Details

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

Scopes

  • write

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
incident_idstringYesminLength 1; maxLength 100
contentstringYesminLength 1; maxLength 2000

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 100
contentstringYesminLength 1; maxLength 2000
created_atstringYesminLength 1; maxLength 64
userobjectNoadditionalProperties false
user.idstringYesminLength 1; maxLength 100
user.summarystringYesminLength 1; maxLength 200
user.html_urlstringNomaxLength 2048
user.typestringNomaxLength 64

Raw schema

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