POST
/
api2
/
v1
/
spellCheck
/
check
/
{jobUid}
Spell check for job
curl --request POST \
  --url https://cloud.memsource.com/web/api2/v1/spellCheck/check/{jobUid} \
  --header 'Content-Type: application/json' \
  --data '{
  "lang": "<string>",
  "texts": [
    "<string>"
  ],
  "referenceTexts": [
    "<string>"
  ],
  "zeroLengthSeparator": "<string>"
}'
{
  "spellCheckResults": [
    {
      "text": "<string>",
      "misspelledWords": [
        {
          "word": "<string>",
          "offset": 123
        }
      ]
    }
  ]
}

Path Parameters

jobUid
string
required

Body

application/json

Response

200
application/json

successful operation

The response is of type object.