fetch_assets
Retrieve and organize assets from Storyblok CMS using customizable filters such as page number, items per page, search term, and folder ID to streamline content management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder_id | No | ||
page | No | ||
per_page | No | ||
search | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"folder_id": {
"type": "number"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"search": {
"type": "string"
}
},
"type": "object"
}