Skip to main content
FuseFuse
IntegrationsMicrosoft teamsActions

Get Microsoft Teams chat

Get one chat by id.

Agent markdown

chats.get · Microsoft Teams · v1

Details

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

Scopes

  • Chat.ReadBasic

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
chat_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": {
    "chat_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "chat_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"
  ]
}