Skip to main content
POST
/
admin
/
translationregistry
/
translation
/
save-alternate
Saves/overrides a value for a single translation with a specific word or phrase other than what was translated.
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>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
itemTypeCode
string | null
default:COUNTRY

Item type code, example: "COUNTRY", "VERB", "EDITORYRULETYPETITLE", "EDITORYRULETYPEDESCRIPTION", etc.

itemRecordID
integer<int32>
default:1

This is the actual record ID of the item being translated. Example: 1 for United States, 2 for Mexico, etc.

languageID
integer<int32>
default:1

This is the language ID that the translation is being saved for. Example: 1 for English, 2 for Spanish, etc.

wordForTranslation
string | null
default:United States

This is the value being saved for the translation. Example: "United States" for English, "Estados Unidos" for Spanish, etc.

Response

Success

success
boolean
data
unknown