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>"
}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>"
}The access token received from the authorization server in the OAuth 2.0 flow.
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)
LLM = 1, Azure = 2
an integer array of the selected LLM AI Model Type IDs