IntegrationsMicrosoft teamsActions
Remove Microsoft Teams channel member
Remove a member from a private or shared channel.
channels.members.remove · Microsoft Teams · v1
Details
Scopes
ChannelMember.ReadWrite.All
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
team_id | string | Yes | minLength 1; maxLength 128 |
channel_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
},
"channel_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"membership_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"team_id",
"channel_id",
"membership_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"id"
]
}