Skip to main content
FuseFuse
IntegrationsDatadogActions

List Datadog team memberships

List memberships for one team. Requires teams_read. Returns bounded membership rows only.

Agent markdown

team_memberships.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
team_idstringYesminLength 1; maxLength 128
page_sizeintegerNominimum 1; maximum 100
cursorstringNominLength 1; maxLength 512

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
membershipsarray<object>YesmaxItems 100
memberships[]objectYesadditionalProperties false
memberships[].idstringYesminLength 1; maxLength 128
memberships[].user_idstringYesminLength 1; maxLength 128
memberships[].rolestringNomaxLength 64
next_cursorstringNominLength 1; maxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "team_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "team_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "memberships": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "user_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "role": {
            "type": "string",
            "maxLength": 64
          }
        },
        "required": [
          "id",
          "user_id"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "memberships"
  ]
}