Skip to main content
POST
/
admin
/
entity
/
translations
/
verify
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>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
word
string
default:Hello
required
Minimum string length: 1
sourceLanguageID
integer<int32>
default:1
required
items
object[]
required

Response

Success

success
boolean
data
unknown