retrieve_multiple_datasources
Fetch multiple datasources from a Storyblok space using search queries or specific IDs, enabling direct access and management of data for AI assistants.
Instructions
Retrieves multiple datasources from a specified Storyblok space.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
by_ids | No | ||
search | No |
Input Schema (JSON Schema)
{
"properties": {
"by_ids": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "By Ids"
},
"search": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Search"
}
},
"title": "retrieve_multiple_datasourcesArguments",
"type": "object"
}