action microsoft_list_list_items { label: "List list items" description: "List items in a SharePoint list. Pass $expand=fields to include column values." provider: microsoft method: GET path: "/v1.0/sites/{site_id}/lists/{list_id}/items" scopes: ["Sites.Read.All"] input: @json { { "type": "object", "required": ["site_id", "list_id"], "additionalProperties": false, "properties": { "site_id": { "type": "string", "description": "Site id." }, "list_id": { "type": "string", "description": "List id or list title." }, "$expand": { "type": "string", "description": "Related data to include, usually fields." }, "$top": { "type": "integer", "description": "Maximum number of items to return." }, "$filter": { "type": "string", "description": "OData filter expression." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "value": { "type": "array", "items": { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "webUrl": { "type": "string" }, "fields": { "type": "object" }, "lastModifiedDateTime": { "type": "string" } } } }, "@odata.nextLink": { "type": "string" } } } } }