Skip to main content
PUT
/
api2
/
v1
/
lqa
/
assessments
/
{jobUid}
/
scorings
Finish LQA Assessment
curl --request PUT \
  --url https://cloud.memsource.com/web/api2/v1/lqa/assessments/{jobUid}/scorings \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "overallFeedback": "<string>"
}
'
{
  "issueCounts": {
    "critical": 123,
    "criticalRepeated": 123,
    "major": 123,
    "majorRepeated": 123,
    "minor": 123,
    "minorRepeated": 123,
    "neutral": 123,
    "neutralRepeated": 123
  },
  "jobPartUid": "<string>",
  "overallFeedback": "<string>",
  "score": 123
}

Authorizations

Authorization
string
header
required

Get a token from auth/login endpoint and then pass it in the Authorization HTTP header in every subsequent API call. For more information visit our help center.

Path Parameters

jobUid
string
required

Body

application/json

Data for finishing LQA Assessment

overallFeedback
string

Overall feedback from the LQA reviewer. If the assessment has already been finished before, null value means keep the previous feedback.

Response

successful operation

issueCounts
object
jobPartUid
string
overallFeedback
string
score
number<double>
status
enum<string>
Available options:
PASS,
FAIL