v4

OpenAPI 3.0.0MIT2026-07-311554531.6 MB
Translations

Upload master translations JSON file

Upload a master JSON file containing translations for multiple workflows. Locale is automatically detected from filename (e.g., en_US.json)

post/v2/translations/master-json/upload

Response

Master translations uploaded successfully

successboolean required

Overall success status of the import operation

messagestring required

Human-readable message describing the import result

successfulstring[]

List of resource IDs that were successfully imported

failedstring[]

List of resource IDs that failed to import

Example response

{
  "success": true,
  "message": "Successfully imported translations for 2 resources: welcome-email, password-reset",
  "successful": [
    "welcome-email",
    "password-reset"
  ],
  "failed": [
    "missing-workflow"
  ]
}