curl --request POST \
--url https://api.example.com/admin/translationregistry/translation/save \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"itemTypeCode": "COUNTRY",
"itemRecordID": 1,
"languageID": 1,
"textToUpdate": "United States"
}
'{
"success": true,
"data": "<unknown>"
}Saves/overrides a value for a single translation.
curl --request POST \
--url https://api.example.com/admin/translationregistry/translation/save \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"itemTypeCode": "COUNTRY",
"itemRecordID": 1,
"languageID": 1,
"textToUpdate": "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.