create_form_translation
Add a translated language version to a form by cloning source text as a draft, enabling in-place editing while keeping codes identical; save with update_form_translation.
Instructions
Add a language version (translation) to a form. Clones the source text as the initial draft and returns it so you can translate right away: edit the human-readable text in place, keep every code identical to the source, then save with update_form_translation. The language must differ from the form's primary language, and there is at most one translation per language (see list_form_translations).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| formId | Yes | The source form UUID | |
| language | Yes | Target language for the new version. Must differ from the form's primary language. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cloned | No | The cloned source draft — translate the text in place, keep every code, then save | |
| formId | No | The source form | |
| language | No | Language of the new version | |
| shareUrl | No | Public link for this language (source token + ?lang=) | |
| translationId | No | The new translation id |