update_preset
Modify preset configurations in Storyblok CMS, including updating ID, name, component details, and visual attributes like images, colors, and icons, for streamlined content management.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| color | No | ||
| component_id | No | ||
| description | No | ||
| icon | No | ||
| id | Yes | ||
| image | No | ||
| name | No | ||
| preset | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"color": {
"type": "string"
},
"component_id": {
"type": "number"
},
"description": {
"type": "string"
},
"icon": {
"type": "string"
},
"id": {
"type": "string"
},
"image": {
"type": "string"
},
"name": {
"type": "string"
},
"preset": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"id"
],
"type": "object"
}