update_space
Modify space configurations in Storyblok CMS, including domain, environments, routes, and options, to optimize content management and collaboration workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ai_translation_disabled | No | ||
billing_address | No | ||
default_root | No | ||
domain | No | ||
duplicatable | No | ||
environments | No | ||
has_pending_tasks | No | ||
name | No | ||
options | No | ||
owner_id | No | ||
parent_id | No | ||
routes | No | ||
searchblok_id | No | ||
space_id | Yes | ||
story_published_hook | No | ||
uniq_domain | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ai_translation_disabled": {
"type": "boolean"
},
"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"
},
"default_root": {
"type": "string"
},
"domain": {
"type": "string"
},
"duplicatable": {
"type": "boolean"
},
"environments": {
"items": {
"additionalProperties": false,
"properties": {
"location": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"location"
],
"type": "object"
},
"type": "array"
},
"has_pending_tasks": {
"type": "boolean"
},
"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"
},
"parent_id": {
"type": "number"
},
"routes": {
"items": {
"type": "string"
},
"type": "array"
},
"searchblok_id": {
"type": "number"
},
"space_id": {
"type": "string"
},
"story_published_hook": {
"type": "string"
},
"uniq_domain": {
"type": "string"
}
},
"required": [
"space_id"
],
"type": "object"
}