POST
/
api2
/
v1
/
lqa
/
assessments
/
results
Get LQA Assessment results
curl --request POST \
  --url https://cloud.memsource.com/web/api2/v1/lqa/assessments/results \
  --header 'Content-Type: application/json' \
  --data '{
  "jobParts": [
    {
      "uid": "<string>"
    }
  ]
}'
[
  {
    "jobPart": {
      "uid": "<string>"
    },
    "status": "PASS",
    "score": 123,
    "issueCounts": {
      "critical": 123,
      "criticalRepeated": 123,
      "major": 123,
      "majorRepeated": 123,
      "minor": 123,
      "minorRepeated": 123,
      "neutral": 123,
      "neutralRepeated": 123
    }
  }
]

Body

application/json

Response

200
application/json

successful operation

The response is of type object[].