retrieve_multiple_datasource_entries
Retrieve multiple datasource entries from a specified Storyblok space by providing datasource ID, slug, or dimension for efficient content management and integration.
Instructions
Retrieves multiple datasource entries from a specified Storyblok space.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datasource_id | No | ||
datasource_slug | No | ||
dimension | No |
Input Schema (JSON Schema)
{
"properties": {
"datasource_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Datasource Id"
},
"datasource_slug": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Datasource Slug"
},
"dimension": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Dimension"
}
},
"title": "retrieve_multiple_datasource_entriesArguments",
"type": "object"
}