action microsoft_get_chat_message { label: "Get chat message" description: "Fetch a single message from a Microsoft Teams chat." provider: microsoft method: GET path: "/v1.0/chats/{chat_id}/messages/{message_id}" scopes: ["Chat.ReadWrite"] input: @json { { "type": "object", "required": ["chat_id", "message_id"], "additionalProperties": false, "properties": { "chat_id": { "type": "string", "description": "Chat id." }, "message_id": { "type": "string", "description": "Message id." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "from": { "type": "object" }, "body": { "type": "object" }, "createdDateTime": { "type": "string" } } } } }