API Documentation
- Analysis
- Bilingual File
- Connector
- Conversations
- Job
- Project
- Project Reference File
- Project Template
- Provider
- Quality Assurance
- Quote
- Term Base
- Translation
- Translation Memory
- User
- Webhook
- Workflow changes
Quality Assurance
Run quality assurance on selected segments
deprecated
Source and target language of jobs have to match
POST
/
api2
/
v2
/
projects
/
{projectUid}
/
jobs
/
qualityAssurances
/
segments
/
run
Copy
Ask AI
curl --request POST \
--url https://cloud.memsource.com/web/api2/v2/projects/{projectUid}/jobs/qualityAssurances/segments/run \
--header 'Content-Type: application/json' \
--data '{
"jobsAndSegments": [
{
"job": {
"uid": "<string>"
},
"segments": [
"<string>"
]
}
],
"warningTypes": [
"EmptyTranslation"
],
"maxQaWarningsCount": 500
}'
Copy
Ask AI
{
"segmentWarnings": [
{
"segmentId": "<string>",
"warnings": [
{
"id": "<string>",
"ignored": true,
"type": "EmptyTranslation"
}
],
"ignoredChecks": [
"EmptyTranslation"
]
}
],
"finished": true
}
Path Parameters
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/v2/projects/{projectUid}/jobs/qualityAssurances/segments/run \
--header 'Content-Type: application/json' \
--data '{
"jobsAndSegments": [
{
"job": {
"uid": "<string>"
},
"segments": [
"<string>"
]
}
],
"warningTypes": [
"EmptyTranslation"
],
"maxQaWarningsCount": 500
}'
Copy
Ask AI
{
"segmentWarnings": [
{
"segmentId": "<string>",
"warnings": [
{
"id": "<string>",
"ignored": true,
"type": "EmptyTranslation"
}
],
"ignoredChecks": [
"EmptyTranslation"
]
}
],
"finished": true
}
Assistant
Responses are generated using AI and may contain mistakes.