Skip to main content
FuseFuse
IntegrationsSentryActions

List Sentry members

List members in the bound Sentry organization. Requires member:read.

Agent markdown

members.list · Sentry · 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
membersarray<object>YesmaxItems 100
members[]objectYesadditionalProperties false
members[].idstringYesminLength 1; maxLength 64
members[].namestringYesminLength 1; maxLength 200
members[].emailstringYesminLength 3; maxLength 320
members[].rolestringYesminLength 1; maxLength 64
members[].pendingbooleanYes
members[].expiredbooleanNo
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": {
    "members": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 200
          },
          "email": {
            "type": "string",
            "minLength": 3,
            "maxLength": 320
          },
          "role": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "pending": {
            "type": "boolean"
          },
          "expired": {
            "type": "boolean"
          }
        },
        "required": [
          "id",
          "name",
          "email",
          "role",
          "pending"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "members"
  ]
}