create_workflow
Generate a new workflow in a Storyblok space by defining a name and content types, enabling structured content management through the Management API.
Instructions
Creates a new workflow in a Storyblok space via the Management API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content_types | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content_types": {
"items": {
"type": "string"
},
"title": "Content Types",
"type": "array"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name",
"content_types"
],
"title": "create_workflowArguments",
"type": "object"
}