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

Path Parameters

projectUid
string
required
jobUid
string
required

Body

application/json

Response

200
application/json

successful operation

The response is of type object.