action microsoft_send_chat_message { label: "Send chat message" description: "Send a message to a Microsoft Teams chat as the signed-in user." provider: microsoft method: POST path: "/v1.0/chats/{chat_id}/messages" scopes: ["Chat.ReadWrite"] input: @json { { "type": "object", "required": ["chat_id", "body"], "additionalProperties": false, "properties": { "chat_id": { "type": "string", "description": "Chat id." }, "body": { "type": "object", "required": ["content"], "properties": { "content": { "type": "string", "description": "Message content." }, "contentType": { "type": "string", "enum": ["text", "html"] } } } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "createdDateTime": { "type": "string" } } } } }