curl --request POST \
--url https://api.example.com/admin/translationregistry/translation/save-alternate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"itemTypeCode": "COUNTRY",
"itemRecordID": 1,
"languageID": 1,
"wordForTranslation": "United States"
}
'{
"success": true,
"data": "<unknown>"
}Saves/overrides a value for a single translation with a specific word or phrase other than what was translated. This is useful in certain situations where original and translated values do not properly reflect the intention of the original text.
curl --request POST \
--url https://api.example.com/admin/translationregistry/translation/save-alternate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"itemTypeCode": "COUNTRY",
"itemRecordID": 1,
"languageID": 1,
"wordForTranslation": "United States"
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.
Item type code, example: "COUNTRY", "VERB", "EDITORYRULETYPETITLE", "EDITORYRULETYPEDESCRIPTION", etc.
This is the actual record ID of the item being translated. Example: 1 for United States, 2 for Mexico, etc.
This is the language ID that the translation is being saved for. Example: 1 for English, 2 for Spanish, etc.
This is the value being saved for the translation. Example: "United States" for English, "Estados Unidos" for Spanish, etc.