create_space
Generate and manage new Storyblok spaces using the Management API, enabling efficient content organization and workflow setup.
Instructions
Creates a new Storyblok space via the Management API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | No | ||
environments | No | ||
name | Yes | ||
story_published_hook | No |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Domain"
},
"environments": {
"anyOf": [
{
"items": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Environments"
},
"name": {
"title": "Name",
"type": "string"
},
"story_published_hook": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Story Published Hook"
}
},
"required": [
"name"
],
"title": "create_spaceArguments",
"type": "object"
}