Design Studio

Create an email translation

Creates a new translation for an email. If content, envelope, and/or transformers are omitted, the values are copied from the default (parent) email.

post/v1/design_studio/emails/{id}/languages

Path parameters

idstring uuid required

The UUID of the email. If your email has multiple languages, you must provide the ID of the default language template. This links the workflow to all of the language variants for the template.

Request body

languagestring required

A language code that corresponds to the language of the translation

Example request

{
  "language": "es"
}

Response

Translation created

Example response

{
  "email_translation": {
    "language": "fr",
    "available_languages": [
      "en",
      "es"
    ],
    "created": 1773856017,
    "updated": 1773856017
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.