action microsoft_get_list_item { label: "Get list item" description: "Fetch a single SharePoint list item. Pass $expand=fields to include column values." provider: microsoft method: GET path: "/v1.0/sites/{site_id}/lists/{list_id}/items/{item_id}" scopes: ["Sites.Read.All"] input: @json { { "type": "object", "required": ["site_id", "list_id", "item_id"], "additionalProperties": false, "properties": { "site_id": { "type": "string", "description": "Site id." }, "list_id": { "type": "string", "description": "List id or list title." }, "item_id": { "type": "string", "description": "List item id." }, "$expand": { "type": "string", "description": "Related data to include, usually fields." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "webUrl": { "type": "string" }, "fields": { "type": "object" }, "lastModifiedDateTime": { "type": "string" } } } } }