Skip to main content
FuseFuse
IntegrationsDatadogActions

List Datadog users

List users with page number pagination via opaque cursor. Requires user_access_read.

Agent markdown

users.list · 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
page_sizeintegerNominimum 1; maximum 100
cursorstringNominLength 1; maxLength 512

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
usersarray<object>YesmaxItems 100
users[]objectYesadditionalProperties false
users[].idstringYesminLength 1; maxLength 128
users[].namestringYesminLength 1; maxLength 200
users[].emailstringYesminLength 3; maxLength 320
users[].statusstringYesminLength 1; maxLength 64
users[].service_accountbooleanYes
users[].verifiedbooleanNo
next_cursorstringNominLength 1; maxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "users": {
      "type": "array",
      "items": {
        "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"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "users"
  ]
}