Skip to main content
FuseFuse
IntegrationsMicrosoft teamsActions

Add Microsoft Teams team member

Add a non-owner member to a team.

Agent markdown

teams.members.add · Microsoft Teams · v1

Details

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

Scopes

  • TeamMember.ReadWriteNonOwnerRole.All

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
team_idstringYesminLength 1; maxLength 128
user_idstringYesminLength 1; maxLength 128
rolesarray<string>NominItems 1; maxItems 8
roles[]stringYesminLength 1; maxLength 64

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYes
user_idstringYes
display_namestringNo
emailstringNo
rolesarray<string>Yes
roles[]stringYes

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "team_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "user_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "roles": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 64
      },
      "minItems": 1,
      "maxItems": 8
    }
  },
  "required": [
    "team_id",
    "user_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string"
    },
    "user_id": {
      "type": "string"
    },
    "display_name": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "roles": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "id",
    "user_id",
    "roles"
  ]
}