duplicate_space
Clone a Storyblok space by specifying a space ID and name, optionally duplicating content and creating components for streamlined content management.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| create_components | No | ||
| duplicate_content | No | ||
| name | Yes | ||
| space_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"create_components": {
"type": "boolean"
},
"duplicate_content": {
"type": "boolean"
},
"name": {
"type": "string"
},
"space_id": {
"type": "string"
}
},
"required": [
"space_id",
"name"
],
"type": "object"
}