v5

latestOpenAPI 3.0.0MIT2026-08-041554551.6 MB
Translations

Retrieve a translation

Retrieve a specific translation by resource type, resource ID and locale

get/v2/translations/{resourceType}/{resourceId}/{locale}

Path parameters

resourceType'workflow' | 'layout' required

Resource type

resourceIdstring required

Resource ID

localestring required

Locale code

Response

Translation found

resourceIdstring required

Resource identifier

resourceType'workflow' | 'layout' required

Resource type

localestring required

Locale code

contentobject required

Translation content as JSON object

createdAtstring required

Creation timestamp

updatedAtstring required

Last update timestamp

Example response

{
  "resourceId": "welcome-email",
  "resourceType": "workflow",
  "locale": "en_US",
  "content": {
    "welcome.title": "Welcome",
    "welcome.message": "Hello there!"
  },
  "createdAt": "2024-01-01T00:00:00.000Z",
  "updatedAt": "2024-01-01T00:00:00.000Z"
}