delete_asset_folder
Remove an asset folder from a Storyblok space by specifying its folder ID, ensuring efficient space management and asset organization.
Instructions
Delete an asset folder from the current Storyblok space.
Parameters:
folder_id (str): ID of the folder to delete.
Returns:
Dict[str, Any]: A success message or error content depending on response.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"folder_id": {
"title": "Folder Id",
"type": "string"
}
},
"required": [
"folder_id"
],
"title": "delete_asset_folderArguments",
"type": "object"
}