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

Path Parameters

projectUid
string
required

Body

application/json

Response

200
application/json

successful operation

The response is of type object.