action microsoft_update_chat { label: "Update chat" description: "Update the topic of a group chat." provider: microsoft method: PATCH path: "/v1.0/chats/{chat_id}" scopes: ["Chat.ReadWrite"] input: @json { { "type": "object", "required": ["chat_id", "topic"], "additionalProperties": false, "properties": { "chat_id": { "type": "string", "description": "Chat id." }, "topic": { "type": "string", "description": "New chat title." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "topic": { "type": "string" } } } } }