create_component_folder
Generate and organize component folders in Storyblok, enabling structured content management by defining folder names and parent IDs for efficient hierarchy setup.
Instructions
Creates a new component folder.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
parent_id | No |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"parent_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Parent Id"
}
},
"required": [
"name"
],
"title": "create_component_folderArguments",
"type": "object"
}