Skip to main content
FuseFuse
IntegrationsPagerdutyActions

Get PagerDuty service

Get one service by id. Requires read.

Agent markdown

services.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
service_idstringYesminLength 1; maxLength 100

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 100
namestringYesminLength 1; maxLength 200
statusstringYesminLength 1; maxLength 64
html_urlstringYesmaxLength 2048
escalation_policyobjectNoadditionalProperties false
escalation_policy.idstringYesminLength 1; maxLength 100
escalation_policy.summarystringYesminLength 1; maxLength 200
escalation_policy.html_urlstringNomaxLength 2048
escalation_policy.typestringNomaxLength 64

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "service_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 100
    }
  },
  "required": [
    "service_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 100
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "status": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "html_url": {
      "type": "string",
      "maxLength": 2048
    },
    "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"
      ]
    }
  },
  "required": [
    "id",
    "name",
    "status",
    "html_url"
  ]
}