update_datasource
Modify existing datasources in Storyblok spaces by updating attributes such as name, slug, or dimensions. Ensure accurate data management and content structure.
Instructions
Updates an existing datasource in a specified Storyblok space.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datasource_id | Yes | ||
dimensions | No | ||
name | No | ||
slug | No |
Input Schema (JSON Schema)
{
"properties": {
"datasource_id": {
"title": "Datasource Id",
"type": "integer"
},
"dimensions": {
"anyOf": [
{
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Dimensions"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"slug": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Slug"
}
},
"required": [
"datasource_id"
],
"title": "update_datasourceArguments",
"type": "object"
}