create_workflow
Define and automate content workflows by specifying custom names and content types, enabling efficient content management within the Storyblok CMS.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content_types | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content_types": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"content_types"
],
"type": "object"
}