create_folder
Create a new folder in Alfresco content management system. Specify folder name, parent location, and optional description for organized storage and document management.
Instructions
Create a new folder in Alfresco.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
folder_name | Yes | ||
parent_id | No | -shared- |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"default": "",
"title": "Description",
"type": "string"
},
"folder_name": {
"title": "Folder Name",
"type": "string"
},
"parent_id": {
"default": "-shared-",
"title": "Parent Id",
"type": "string"
}
},
"required": [
"folder_name"
],
"type": "object"
}