Skip to main content
POST
/
api2
/
v3
/
projects
/
{projectUid}
/
jobs
/
qualityAssurances
/
run
Run quality assurance (batch)
curl --request POST \
  --url https://cloud.memsource.com/web/api2/v3/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
jobs
object[]
required
Required array length: 1 - 500 elements
settings
object
maxQaWarningsCount
integer

Maximum number of QA warnings in result, default: 100. For efficiency reasons QA warnings are processed with minimum segments chunk size 10, therefore slightly more warnings are returned.

Required range: 1 <= x <= 1000

Response

successful operation

segmentWarnings
object[]
finished
boolean
I