Skip to main content
FuseFuse
IntegrationsDatadogActions

Get Datadog team

Get one team by id. Requires teams_read.

Agent markdown

teams.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
team_idstringYesminLength 1; maxLength 128

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 128
handlestringYesminLength 1; maxLength 200
namestringYesminLength 1; maxLength 200
descriptionstringNomaxLength 4000

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "team_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "team_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "handle": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "description": {
      "type": "string",
      "maxLength": 4000
    }
  },
  "required": [
    "id",
    "handle",
    "name"
  ]
}