duplicate_workflow
Duplicates an existing workflow in a Storyblok space by specifying the workflow ID, name, and applicable content types using the Management API.
Instructions
Duplicates an existing workflow in a Storyblok space via the Management API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content_types | Yes | ||
name | Yes | ||
workflow_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content_types": {
"items": {
"type": "string"
},
"title": "Content Types",
"type": "array"
},
"name": {
"title": "Name",
"type": "string"
},
"workflow_id": {
"title": "Workflow Id",
"type": "integer"
}
},
"required": [
"workflow_id",
"name",
"content_types"
],
"title": "duplicate_workflowArguments",
"type": "object"
}