create_asset_folder
Organize digital assets by creating structured folders within the Storyblok CMS, ensuring efficient content management and streamlined access to resources.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
parent_id | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"parent_id": {
"type": [
"number",
"string"
]
}
},
"required": [
"name"
],
"type": "object"
}