Skip to main content
FuseFuse
IntegrationsDatadogActions

Get Datadog user

Get one user by id. Requires user_access_read.

Agent markdown

users.get · Datadog · v1

Details

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

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
user_idstringYesminLength 1; maxLength 128

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 128
namestringYesminLength 1; maxLength 200
emailstringYesminLength 3; maxLength 320
statusstringYesminLength 1; maxLength 64
service_accountbooleanYes
verifiedbooleanNo

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "user_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "user_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "email": {
      "type": "string",
      "minLength": 3,
      "maxLength": 320
    },
    "status": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "service_account": {
      "type": "boolean"
    },
    "verified": {
      "type": "boolean"
    }
  },
  "required": [
    "id",
    "name",
    "email",
    "status",
    "service_account"
  ]
}