IntegrationsMicrosoft teamsActions
Open Microsoft Teams direct chat
Open or create a one-on-one chat with a user.
chats.open_direct · Microsoft Teams · v1
Details
Scopes
Chat.Create
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
user_id | string | Yes | minLength 1; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | — |
chat_type | string | Yes | enum oneOnOne | group | meeting |
topic | string | No | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"user_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"user_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"chat_type": {
"type": "string",
"enum": [
"oneOnOne",
"group",
"meeting"
]
},
"topic": {
"type": "string"
}
},
"required": [
"id",
"chat_type"
]
}