IntegrationsMicrosoft teamsActions
Remove Microsoft Teams team member
Remove a non-owner member from a team.
teams.members.remove · Microsoft Teams · v1
Details
Scopes
TeamMember.ReadWriteNonOwnerRole.All
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
team_id | string | Yes | minLength 1; maxLength 128 |
membership_id | string | Yes | minLength 1; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 128 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"team_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"membership_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"team_id",
"membership_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"id"
]
}