Translation

Preview copying a tenant's manual translations into platform default translations

GET
/api/v2/default-translations/copy-tenant-translations/preview

Authorization

BearerAuthObject
AuthorizationBearer <token>

In: header

Query Parameters

projectTypeId*integer

Identifier of the platform (project type)

tenantId*string

Tenant UUID whose manual translations are the copy source

Formatuuid
languageId*integer

Target language to copy (must not be the platform base language)

overwrite?boolean

Whether existing defaults would be overwritten on apply

limit?integer

Pagination limit (1-1500)

offset?integer

Pagination offset

Response Body

application/json

curl -X GET "https://example.com/api/v2/default-translations/copy-tenant-translations/preview?projectTypeId=1&tenantId=11111111-1111-1111-1111-111111111111&languageId=2&overwrite=false&limit=50&offset=0"
{  "items": [    {      "key": "login_button",      "language": 2,      "oldValue": null,      "newValue": "Se connecter",      "action": "create"    }  ],  "meta": {    "limit": 50,    "offset": 0,    "total": 120  },  "counters": {    "create": 100,    "overwrite": 20,    "total": 120  }}
Empty
Empty
Empty
Empty
Empty