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

Documentation Index

Fetch the complete documentation index at: https://developers.phrase.com/llms.txt

Use this file to discover all available pages before exploring further.

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.

Body

application/json

Data for finishing multiple LQA assessments

items
object[]
required
Required array length: 1 - 100 elements

Response

successful operation

results
object[]
required