Translation

Bulk upload translations for a specific language and story

POST
/api/v2/default-translations/json-load-by-language

Authorization

BearerAuthObject
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/v2/default-translations/json-load-by-language" \  -H "Content-Type: application/json" \  -d '{    "projectTypeId": 1,    "storyId": 1,    "languageId": 5,    "items": [      {        "name": "ScopeBoards.FeatureWidgets.Boards.IbRoom.Widgets.AcquisitionReport.Date",        "translation": "Дата"      }    ]  }'
{  "message": "OK",  "inserted": 2,  "updated": 1,  "skipped": 0}
Empty
Empty
Empty