fetch_asset_folder
Retrieve detailed information about a specific asset folder in Storyblok using its unique ID. Access folder data for efficient content management and organization.
Instructions
Fetch details of a specific asset folder by its ID.
Parameters:
folder_id (str): ID of the asset folder to retrieve.
Returns:
Dict[str, Any]: The API response containing the folder data or an error message.
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": "fetch_asset_folderArguments",
"type": "object"
}