action microsoft_get_chat { label: "Get chat" description: "Fetch a Microsoft Teams chat by id." provider: microsoft method: GET path: "/v1.0/chats/{chat_id}" scopes: ["Chat.ReadWrite"] input: @json { { "type": "object", "required": ["chat_id"], "additionalProperties": false, "properties": { "chat_id": { "type": "string", "description": "Chat id." }, "$expand": { "type": "string", "description": "Expand related data, e.g. members." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "topic": { "type": "string" }, "chatType": { "type": "string" }, "webUrl": { "type": "string" }, "members": { "type": "array", "items": { "type": "object" } } } } } }