get_datasource_entry
Retrieve a specific entry from a Storyblok CMS datasource using its unique entry ID, enabling efficient access to structured content for integration or management purposes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| entry_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"entry_id": {
"type": "string"
}
},
"required": [
"entry_id"
],
"type": "object"
}