update_datasource_entry
Modify an existing datasource entry in a Storyblok space by updating its name, value, dimension value, or dimension ID. Ensure accurate and efficient data management within your content workflows.
Instructions
Updates an existing datasource entry in a specified Storyblok space.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datasource_entry_id | Yes | ||
dimension_id | No | ||
dimension_value | No | ||
name | No | ||
value | No |
Input Schema (JSON Schema)
{
"properties": {
"datasource_entry_id": {
"title": "Datasource Entry Id",
"type": "integer"
},
"dimension_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Dimension Id"
},
"dimension_value": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Dimension Value"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"value": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Value"
}
},
"required": [
"datasource_entry_id"
],
"title": "update_datasource_entryArguments",
"type": "object"
}