action microsoft_send_channel_message { label: "Send channel message" description: "Send a message to a Microsoft Teams channel. Requires the team and channel ids." provider: microsoft method: POST path: "/v1.0/teams/{team_id}/channels/{channel_id}/messages" scopes: ["ChannelMessage.Send"] input: @json { { "type": "object", "required": ["team_id", "channel_id", "body"], "additionalProperties": false, "properties": { "team_id": { "type": "string", "description": "Team id." }, "channel_id": { "type": "string", "description": "Channel id." }, "body": { "type": "object", "required": ["content"], "properties": { "content": { "type": "string", "description": "Message content." }, "contentType": { "type": "string", "enum": ["text", "html"] } } }, "subject": { "type": "string" }, "importance": { "type": "string", "enum": ["normal", "high", "urgent"] } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "createdDateTime": { "type": "string" }, "webUrl": { "type": "string" } } } } }