list-add
Add a new list to a specified Microsoft 365 site by providing a title and site URL. Simplifies list creation using CLI commands through GitHub Copilot Agent.
Instructions
Creates list in the specified site
Input Schema
Name | Required | Description | Default |
---|---|---|---|
title | Yes | Title of the list to add. | |
webUrl | Yes | URL of the site where the list should be added. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"title": {
"description": "Title of the list to add.",
"type": "string"
},
"webUrl": {
"description": "URL of the site where the list should be added.",
"type": "string"
}
},
"required": [
"title",
"webUrl"
],
"type": "object"
}