Microsoft Teams
Microsoft Teams is a collaboration platform that combines workplace chat, video meetings, file storage, and application integration.
Categories: communication
Type: microsoftTeams/v1
Connections
Version: 1
OAuth2 Authorization Code
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
clientId | Client Id | STRING | TEXT | true | |
clientSecret | Client Secret | STRING | TEXT | true | |
tenantId | Tenant Id | STRING | TEXT | true |
Actions
Create Channel
Name: createChannel
Creates a new channel within a team.
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
teamId | Team ID | STRING | SELECT | ID of the team where the channel will be created. | true |
displayName | Channel Name | STRING | TEXT | true | |
description | Description | STRING | TEXT | Description for the channel. | false |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
id | STRING | TEXT |
displayName | STRING | TEXT |
description | STRING | TEXT |
Send Channel Message
Name: sendChannelMessage
Sends a message to a channel.
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
teamId | Team ID | STRING | SELECT | ID of the team where the channel is located. | true |
channelId | Channel ID | STRING | SELECT | Channel to send message to. | true |
contentType | Message Text Format | STRING | SELECT | true | |
content | Message Text | STRING | TEXT_AREA | true |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
id | STRING | TEXT |
body | {STRING(contentType), STRING(content)} | OBJECT_BUILDER |
channelIdentity | {STRING(teamId), STRING(channelId)} | OBJECT_BUILDER |
Send Chat Message
Name: sendChatMessage
Sends a message in an existing chat.
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
chatId | Chat ID | STRING | SELECT | true | |
contentType | Message Text Format | STRING | SELECT | true | |
content | Message Text | STRING | TEXT_AREA | true |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
id | STRING | TEXT |
chatId | STRING | TEXT |
body | {STRING(contentType), STRING(content)} | OBJECT_BUILDER |