POST
/
api2
/
v2
/
projects
/
{projectUid}
/
jobs
/
qualityAssurances
/
segments
/
run
Run quality assurance on selected segments
curl --request POST \
  --url https://cloud.memsource.com/web/api2/v2/projects/{projectUid}/jobs/qualityAssurances/segments/run \
  --header 'Content-Type: application/json' \
  --data '{
  "jobsAndSegments": [
    {
      "job": {
        "uid": "<string>"
      },
      "segments": [
        "<string>"
      ]
    }
  ],
  "warningTypes": [
    "EmptyTranslation"
  ],
  "maxQaWarningsCount": 500
}'
{
  "segmentWarnings": [
    {
      "segmentId": "<string>",
      "warnings": [
        {
          "id": "<string>",
          "ignored": true,
          "type": "EmptyTranslation"
        }
      ],
      "ignoredChecks": [
        "EmptyTranslation"
      ]
    }
  ],
  "finished": true
}

Path Parameters

projectUid
string
required

Body

application/json

Response

200
application/json

successful operation

The response is of type object.