update_datasource
Automatically update stored data sources within Storyblok CMS by specifying IDs, names, slugs, or dimensions, ensuring accurate and consistent content management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dimensions_attributes | No | ||
id | Yes | ||
name | No | ||
slug | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"dimensions_attributes": {
"items": {
"additionalProperties": false,
"properties": {
"entry_value": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"entry_value"
],
"type": "object"
},
"type": "array"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"slug": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}