AddList
Creates a new SharePoint list with specified properties. Helps automate list creation for structured data storage.
Input
| Name | Type | Required | Description |
| Name | String | True | The name of the SharePoint list to be created. Helps identify the newly added list. |
| Template | String | False | The name or ID of the template used for creating the list. Determines the structure and default settings of the list. |
| Description | String | False | A brief description of the list being added. Helps provide context and purpose for the new list. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | Indicates whether the list creation operation was successful. Returns 'true' for success and 'false' for failure. |
| ErrorCode | Integer | If the procedure fails, this field displays the corresponding error code. Useful for debugging and troubleshooting. |
| ErrorMessage | String | If the procedure fails, this field provides a detailed error message explaining the failure. Helps diagnose issues with list creation. |