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
- Machine Translation
- Machine Translation Settings
- Mapping
- Net Rate Scheme
- Notifications
- Price List
- Project
- Project Reference File
- Project Template
- Provider
- Quality Assurance
- GETGET list LQA profiles
- POSTCreate LQA profile
- GETGet list of LQA profile authors
- GETGet LQA profile default values
- GETGet LQA profile details
- PUTUpdate LQA profile
- DELDelete LQA profile
- POSTMake LQA profile default
- POSTDuplicate LQA profile
- POSTEdit ignored checks
- POSTAdd ignored warnings
- DELDelete ignored warnings
- GETGet list of LQA profile authors
- POSTAdd ignored warnings
- DELDelete ignored warnings
- GETGet QA settings
- GETGet QA settings for job
- POSTRun quality assurance (batch)
- POSTRun quality assurance on selected segments
- POSTRun quality assurance
- POSTRun quality assurance (batch)
- POSTRun quality assurance on selected segments
- POSTRun quality assurance on selected segments and save segments
- GETGet QA settings for project
- POSTRun quality assurance
- GETGet QA settings for job part
- GET
- Quote
- SCIM
- Segmentation Rules
- Service
- Spell Check
- SubDomain
- Supported Languages
- Term Base
- Translation
- Translation Memory
- User
- Vendor
- Webhook
- Workflow changes
- Workflow Step
- XML Assistant
Quality Assurance
Run quality assurance
Call “Get QA settings” endpoint to get the list of enabled QA checks
POST
/
api2
/
v3
/
projects
/
{projectUid}
/
jobs
/
{jobUid}
/
qualityAssurances
/
run
Copy
Ask AI
curl --request POST \
--url https://cloud.memsource.com/web/api2/v3/projects/{projectUid}/jobs/{jobUid}/qualityAssurances/run \
--header 'Content-Type: application/json' \
--data '{
"initialSegment": {
"uid": "<string>"
},
"maxQaWarningsCount": 500,
"warningTypes": [
"EmptyTranslation"
]
}'
Copy
Ask AI
{
"segmentWarnings": [
{
"segmentId": "<string>",
"warnings": [
{
"id": "<string>",
"ignored": true,
"type": "<string>",
"repetitionGroupId": "<string>"
}
],
"ignoredChecks": [
"<string>"
]
}
],
"finished": true
}
Body
application/json
Response
200
application/json
successful operation
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request POST \
--url https://cloud.memsource.com/web/api2/v3/projects/{projectUid}/jobs/{jobUid}/qualityAssurances/run \
--header 'Content-Type: application/json' \
--data '{
"initialSegment": {
"uid": "<string>"
},
"maxQaWarningsCount": 500,
"warningTypes": [
"EmptyTranslation"
]
}'
Copy
Ask AI
{
"segmentWarnings": [
{
"segmentId": "<string>",
"warnings": [
{
"id": "<string>",
"ignored": true,
"type": "<string>",
"repetitionGroupId": "<string>"
}
],
"ignoredChecks": [
"<string>"
]
}
],
"finished": true
}
Assistant
Responses are generated using AI and may contain mistakes.