Skip to main content
POST
/
admin
/
translationregistry
/
translations
/
filter
Get list of translations in translation registry by filter
curl --request POST \
  --url https://api.example.com/admin/translationregistry/translations/filter \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "itemTypeCode": "COUNTRY",
  "destinationLanguageIDs": [
    123
  ],
  "recordID": null,
  "translationApproachTypeID": null,
  "aiModelTypeIDs": [
    123
  ],
  "searchText": null,
  "languageID": 1,
  "page": 1,
  "pageSize": 10
}
'
{
  "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
destinationLanguageIDs
integer<int32>[] | null
recordID
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)

translationApproachTypeID
integer<int32> | null

LLM = 1, Azure = 2

aiModelTypeIDs
integer<int32>[] | null

an integer array of the selected LLM AI Model Type IDs

searchText
string | null
languageID
integer<int32>
default:1
page
integer<int32>
default:1
pageSize
integer<int32>
default:10

Response

Success

success
boolean
data
unknown