curl --request POST \
--url https://api.example.com/admin/entity/translations/verify \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"word": "Hello",
"sourceLanguageID": 1,
"items": [
{
"targetLanguageID": 3,
"targetLanguageWord": "Ola"
}
]
}
'{
"success": true,
"data": "<unknown>"
}Verify word translations by its source and target languages.
curl --request POST \
--url https://api.example.com/admin/entity/translations/verify \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"word": "Hello",
"sourceLanguageID": 1,
"items": [
{
"targetLanguageID": 3,
"targetLanguageWord": "Ola"
}
]
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.