action microsoft_create_list_item { label: "Create list item" description: "Create an item in a SharePoint list." provider: microsoft method: POST path: "/v1.0/sites/{site_id}/lists/{list_id}/items" scopes: ["Sites.ReadWrite.All"] input: @json { { "type": "object", "required": ["site_id", "list_id", "fields"], "additionalProperties": false, "properties": { "site_id": { "type": "string", "description": "Site id." }, "list_id": { "type": "string", "description": "List id or list title." }, "fields": { "type": "object", "description": "Column values keyed by internal column name, e.g. Title." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "webUrl": { "type": "string" }, "fields": { "type": "object" } } } } }