action microsoft_delete_list_item { label: "Delete list item" description: "Delete an item from a SharePoint list." provider: microsoft method: DELETE path: "/v1.0/sites/{site_id}/lists/{list_id}/items/{item_id}" scopes: ["Sites.ReadWrite.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": "Id of the item to delete." } } } } }