Skip to main content
FuseFuse
IntegrationsPagerdutyActions

Get PagerDuty user

Get one user by id. Requires read.

Agent markdown

users.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
user_idstringYesminLength 1; maxLength 100

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 100
namestringYesminLength 1; maxLength 200
emailstringYesminLength 3; maxLength 320
rolestringNomaxLength 64
time_zonestringNomaxLength 64

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "user_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 100
    }
  },
  "required": [
    "user_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 100
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "email": {
      "type": "string",
      "minLength": 3,
      "maxLength": 320
    },
    "role": {
      "type": "string",
      "maxLength": 64
    },
    "time_zone": {
      "type": "string",
      "maxLength": 64
    }
  },
  "required": [
    "id",
    "name",
    "email"
  ]
}