create_space
Set up and manage custom environments in Storyblok CMS by defining names, domains, and workflows. Configure billing, backup settings, and integrations for tailored content management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
billing_address | No | ||
domain | No | ||
environments | No | ||
name | Yes | ||
options | No | ||
owner_id | No | ||
story_published_hook | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"billing_address": {
"additionalProperties": false,
"properties": {
"address_city": {
"type": "string"
},
"address_country": {
"type": "string"
},
"address_iso_country": {
"type": "string"
},
"address_line1": {
"type": "string"
},
"address_zip": {
"type": "string"
},
"company": {
"type": "string"
},
"email": {
"type": "string"
},
"name": {
"type": "string"
},
"order_number": {
"type": "string"
},
"tax_number": {
"type": "string"
}
},
"type": "object"
},
"domain": {
"type": "string"
},
"environments": {
"items": {
"additionalProperties": false,
"properties": {
"location": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"location"
],
"type": "object"
},
"type": "array"
},
"name": {
"type": "string"
},
"options": {
"additionalProperties": false,
"properties": {
"aws_arn": {
"type": "string"
},
"backup_frequency": {
"type": "string"
},
"branch_deployed_hook": {
"type": "string"
},
"languages": {
"items": {
"additionalProperties": false,
"properties": {
"code": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"code",
"name"
],
"type": "object"
},
"type": "array"
},
"s3_bucket": {
"type": "string"
}
},
"type": "object"
},
"owner_id": {
"type": "number"
},
"story_published_hook": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}