IntegrationsMicrosoft teamsActions
Add Microsoft Teams channel member
Add a member to a private or shared channel.
channels.members.add · 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 |
user_id | string | Yes | minLength 1; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | — |
user_id | string | Yes | — |
display_name | string | No | — |
email | string | No | — |
roles | array<string> | Yes | — |
roles[] | string | Yes | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"team_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"channel_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"user_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"team_id",
"channel_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"
]
}