curl --request POST \
--url https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/jobs/{jobUid}/qualityAssurances/run \
--header 'Content-Type: application/json' \
--data '{
"initialSegment": {
"uid": "<string>"
},
"warningTypes": [
"EmptyTranslation"
]
}'
{
"segmentWarnings": [
{
"segmentId": "<string>",
"warnings": [
{
"id": "<string>",
"ignored": true,
"type": "EmptyTranslation"
}
],
"ignoredChecks": [
"EmptyTranslation"
]
}
],
"finished": true
}
curl --request POST \
--url https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/jobs/{jobUid}/qualityAssurances/run \
--header 'Content-Type: application/json' \
--data '{
"initialSegment": {
"uid": "<string>"
},
"warningTypes": [
"EmptyTranslation"
]
}'
{
"segmentWarnings": [
{
"segmentId": "<string>",
"warnings": [
{
"id": "<string>",
"ignored": true,
"type": "EmptyTranslation"
}
],
"ignoredChecks": [
"EmptyTranslation"
]
}
],
"finished": true
}
successful operation
The response is of type object
.
Was this page helpful?