update_datasource_entry
Modify a datasource entry by updating specific attributes such as name, value, and dimensions. This tool connects AI-driven commands to Storyblok CMS, enabling efficient content management and data adjustments.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dimension_id | No | ||
dimension_value | No | ||
entry_id | Yes | ||
name | No | ||
value | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"dimension_id": {
"type": "number"
},
"dimension_value": {
"type": "string"
},
"entry_id": {
"type": "string"
},
"name": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"entry_id"
],
"type": "object"
}