update_workflow
Manage and update workflows in Storyblok CMS by specifying content IDs, names, and associated content types through structured JSON input, enabling efficient content operations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content_types | No | ||
id | Yes | ||
name | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content_types": {
"items": {
"type": "string"
},
"type": "array"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}