Skip to main content
FuseFuse
IntegrationsMicrosoft teamsActions

Open Microsoft Teams direct chat

Open or create a one-on-one chat with a user.

Agent markdown

chats.open_direct · Microsoft Teams · v1

Details

Risk
Write
Idempotency
Unsafe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=false, destructive=false, idempotent=false, openWorld=true

Scopes

  • Chat.Create

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
user_idstringYesminLength 1; maxLength 128

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYes
chat_typestringYesenum oneOnOne | group | meeting
topicstringNo

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"
  ]
}