Skip to main content

Add Language

Adds new language to the project.

Request type: POST

API Endpoint

https://api.translized.com/language/add

Parameters

ParamTypeRequiredDescription
projectIdStringTrueId of your project
languageCodeStringTrueCode of language to add

Example requests

curl -X POST -H "Content-Type: application/json" \
-H "api-token: 42cf5fec-a74c-4a53-8ebc-86a4e52b7ce6" \
-d "{"projectId":"A3KJtLw4mt", "languageCode":"de"}" \
https://api.translized.com/language/add
info
  • projectId can be found inside your project's settings. (Translized App > Your Project > Settings )
  • List of all supported languages with languageCode values can be found in our Supported Languages section.

Example response

{
"result": {
"code": "de",
"label": "German"
}
}