translate_story
Translates Storyblok CMS content into specified languages by using story ID and language code, enabling efficient multilingual content management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lang | Yes | ||
story_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"lang": {
"type": "string"
},
"story_id": {
"type": "string"
}
},
"required": [
"story_id",
"lang"
],
"type": "object"
}