fetch_datasource_entries
Retrieve specific entries from a Storyblok CMS datasource by specifying the datasource ID, page number, and entries per page to manage and organize content efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datasource_id | Yes | ||
page | No | ||
per_page | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"datasource_id": {
"type": "string"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
}
},
"required": [
"datasource_id"
],
"type": "object"
}