API Documentation
- Additional Workflow Step
- Analysis
- Async Request
- Authentication
- Bilingual File
- Business Unit
- Buyer
- Client
- Connector
- Conversations
- Cost Center
- Custom Fields
- Custom File Type
- Domain
- Due Date Scheme
- Email Template
- File
- Glossary
- Import settings
- Job
- Language AI
- Language Quality Assessment
- PUTStart multiple LQA Assessments
- POSTGet multiple LQA Assessments
- DELDiscard multiple ongoing LQA Assessments
- GETDownload LQA Assessment XLSX reports
- POSTSend email(s) with LQA reports
- GETGet sharable link of LQA reports
- GETGet recipients of email with LQA reports
- POSTGet LQA Assessment results
- PUTFinish multiple LQA Assessments
- DELDiscard multiple finished LQA Assessment results
- GETGet LQA Assessment
- POSTStart LQA Assessment
- DELDiscard ongoing LQA Assessment
- PUTFinish LQA Assessment
- POSTRun Auto LQA
- PUT
- Machine Translation
- Machine Translation Settings
- Mapping
- Net Rate Scheme
- Notifications
- Price List
- Project
- Project Reference File
- Project Template
- Provider
- Quality Assurance
- Quote
- SCIM
- Segmentation Rules
- Service
- Spell Check
- SubDomain
- Supported Languages
- Term Base
- Translation
- Translation Memory
- User
- Vendor
- Webhook
- Workflow changes
- Workflow Step
- XML Assistant
Language Quality Assessment
Finish multiple LQA Assessments
Finishing LQA Assessments will calculate scores
PUT
/
api2
/
v1
/
lqa
/
assessments
/
scorings
Finish multiple LQA Assessments
Copy
Ask AI
curl --request PUT \
--url https://cloud.memsource.com/web/api2/v1/lqa/assessments/scorings \
--header 'Content-Type: application/json' \
--data '{
"items": [
{
"jobPartUid": "<string>",
"overallFeedback": "<string>"
}
]
}'
Copy
Ask AI
{
"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
}
}
]
}
Body
application/json
Data for finishing multiple LQA assessments
Response
200
application/json
successful operation
The response is of type object
.
Was this page helpful?
Finish multiple LQA Assessments
Copy
Ask AI
curl --request PUT \
--url https://cloud.memsource.com/web/api2/v1/lqa/assessments/scorings \
--header 'Content-Type: application/json' \
--data '{
"items": [
{
"jobPartUid": "<string>",
"overallFeedback": "<string>"
}
]
}'
Copy
Ask AI
{
"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
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.