v4

latestOpenAPI 3.0.0MIT2026-07-311494532.1 MB
Translations

Retrieve a translation group

Retrieves a single translation group by resource type (workflow, layout) and resource ID (workflowId, layoutId)

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

Path parameters

resourceType'workflow' | 'layout' required

Resource type

resourceIdstring required

Resource ID

Headers

idempotency-keystring

A header for idempotency purposes

Response

Translation group details

resourceIdstring required

Resource identifier (slugified ID)

resourceType'workflow' | 'layout' required

Resource type

resourceNamestring required

Resource name (e.g., workflow name)

localesstring[] required

Array of available locales for this resource

outdatedLocalesstring[]

Locales that are outdated compared to the default locale (only present when there are outdated locales)

createdAtstring required

Creation timestamp

updatedAtstring required

Last update timestamp

Example response

{
  "resourceId": "welcome-email",
  "resourceType": "workflow",
  "resourceName": "Welcome Email Workflow",
  "locales": [
    "en_US",
    "es_ES",
    "fr_FR"
  ],
  "outdatedLocales": [
    "es_ES",
    "fr_FR"
  ],
  "createdAt": "2024-01-01T00:00:00.000Z",
  "updatedAt": "2024-01-01T00:00:00.000Z"
}