Skip to main content
POST
/
admin
/
translationregistry
/
translation
/
delete
Delete Translations in Translation Registry
curl --request POST \
  --url https://api.example.com/admin/translationregistry/translation/delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "itemTypeCode": null,
  "itemRecordID": null,
  "languageID": 3
}
'
{
  "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

The translation registry item type code

itemRecordID
integer<int32> | null

the integer ID of the record to which the translations are associated in case a user wants to get back all translations for a specific record (e.g. all translations for CountryID # 123)

languageID
integer<int32>
default:3

Response

Success

success
boolean
data
unknown