fetch_assets
Retrieve multiple assets from Storyblok Management API using pagination, search, filtering, and sorting options. Streamlines asset management for efficient content organization and access.
Instructions
Retrieve multiple assets from Storyblok Management API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
by_alt | No | ||
by_copyright | No | ||
by_title | No | ||
folder_id | No | ||
is_private | No | ||
page | No | ||
per_page | No | ||
search | No | ||
sort_by | No | ||
with_tags | No |
Input Schema (JSON Schema)
{
"properties": {
"by_alt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "By Alt"
},
"by_copyright": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "By Copyright"
},
"by_title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "By Title"
},
"folder_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Folder Id"
},
"is_private": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Is Private"
},
"page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 1,
"title": "Page"
},
"per_page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 25,
"title": "Per Page"
},
"search": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Search"
},
"sort_by": {
"anyOf": [
{
"enum": [
"created_at:asc",
"created_at:desc",
"updated_at:asc",
"updated_at:desc",
"short_filename:asc",
"short_filename:desc"
],
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sort By"
},
"with_tags": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "With Tags"
}
},
"title": "fetch_assetsArguments",
"type": "object"
}