action microsoft_list_chat_members { label: "List chat members" description: "List the members of a Microsoft Teams chat." provider: microsoft method: GET path: "/v1.0/chats/{chat_id}/members" scopes: ["Chat.ReadWrite"] input: @json { { "type": "object", "required": ["chat_id"], "additionalProperties": false, "properties": { "chat_id": { "type": "string", "description": "Chat id." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "value": { "type": "array", "items": { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "displayName": { "type": "string" }, "email": { "type": "string" }, "roles": { "type": "array", "items": { "type": "string" } } } } } } } } }