curl --request PUT \
--url https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/qaSettings \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"emptyPairTags": true,
"emptyTagContent": true,
"emptyTranslation": true,
"excludeLockedSegments": true,
"forbiddenStrings": [
"<string>"
],
"forbiddenTerms": true,
"formatting": true,
"ignoreNotApprovedTerms": true,
"inconsistentTagContent": true,
"inconsistentTranslation": true,
"joinTags": true,
"leadingAndTrailingSpaces": true,
"missingNumbers": true,
"moraviaQA": {
"enabled": true,
"profile": "<string>"
},
"multipleSpaces": true,
"newerAtPrecedingWorkflowStep": true,
"regexp": {
"rules": [
{
"description": "<string>",
"id": "<string>",
"ignorable": true,
"instant": true,
"sourceRegexp": "<string>",
"targetRegexp": "<string>"
}
]
},
"repeatedWords": true,
"segmentNotConfirmed": true,
"spellCheck": true,
"strictJobStatus": false,
"targetLengthMax": 1,
"targetLengthPerSegment": true,
"targetLengthPercent": 1,
"terminology": true,
"trailingPunctuation": true,
"trailingSpace": true,
"unresolvedComment": true,
"xliffTags": true
}
'import requests
url = "https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/qaSettings"
payload = {
"emptyPairTags": True,
"emptyTagContent": True,
"emptyTranslation": True,
"excludeLockedSegments": True,
"forbiddenStrings": ["<string>"],
"forbiddenTerms": True,
"formatting": True,
"ignoreNotApprovedTerms": True,
"inconsistentTagContent": True,
"inconsistentTranslation": True,
"joinTags": True,
"leadingAndTrailingSpaces": True,
"missingNumbers": True,
"moraviaQA": {
"enabled": True,
"profile": "<string>"
},
"multipleSpaces": True,
"newerAtPrecedingWorkflowStep": True,
"regexp": { "rules": [
{
"description": "<string>",
"id": "<string>",
"ignorable": True,
"instant": True,
"sourceRegexp": "<string>",
"targetRegexp": "<string>"
}
] },
"repeatedWords": True,
"segmentNotConfirmed": True,
"spellCheck": True,
"strictJobStatus": False,
"targetLengthMax": 1,
"targetLengthPerSegment": True,
"targetLengthPercent": 1,
"terminology": True,
"trailingPunctuation": True,
"trailingSpace": True,
"unresolvedComment": True,
"xliffTags": True
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
emptyPairTags: true,
emptyTagContent: true,
emptyTranslation: true,
excludeLockedSegments: true,
forbiddenStrings: ['<string>'],
forbiddenTerms: true,
formatting: true,
ignoreNotApprovedTerms: true,
inconsistentTagContent: true,
inconsistentTranslation: true,
joinTags: true,
leadingAndTrailingSpaces: true,
missingNumbers: true,
moraviaQA: {enabled: true, profile: '<string>'},
multipleSpaces: true,
newerAtPrecedingWorkflowStep: true,
regexp: {
rules: [
{
description: '<string>',
id: '<string>',
ignorable: true,
instant: true,
sourceRegexp: '<string>',
targetRegexp: '<string>'
}
]
},
repeatedWords: true,
segmentNotConfirmed: true,
spellCheck: true,
strictJobStatus: false,
targetLengthMax: 1,
targetLengthPerSegment: true,
targetLengthPercent: 1,
terminology: true,
trailingPunctuation: true,
trailingSpace: true,
unresolvedComment: true,
xliffTags: true
})
};
fetch('https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/qaSettings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/qaSettings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'emptyPairTags' => true,
'emptyTagContent' => true,
'emptyTranslation' => true,
'excludeLockedSegments' => true,
'forbiddenStrings' => [
'<string>'
],
'forbiddenTerms' => true,
'formatting' => true,
'ignoreNotApprovedTerms' => true,
'inconsistentTagContent' => true,
'inconsistentTranslation' => true,
'joinTags' => true,
'leadingAndTrailingSpaces' => true,
'missingNumbers' => true,
'moraviaQA' => [
'enabled' => true,
'profile' => '<string>'
],
'multipleSpaces' => true,
'newerAtPrecedingWorkflowStep' => true,
'regexp' => [
'rules' => [
[
'description' => '<string>',
'id' => '<string>',
'ignorable' => true,
'instant' => true,
'sourceRegexp' => '<string>',
'targetRegexp' => '<string>'
]
]
],
'repeatedWords' => true,
'segmentNotConfirmed' => true,
'spellCheck' => true,
'strictJobStatus' => false,
'targetLengthMax' => 1,
'targetLengthPerSegment' => true,
'targetLengthPercent' => 1,
'terminology' => true,
'trailingPunctuation' => true,
'trailingSpace' => true,
'unresolvedComment' => true,
'xliffTags' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/qaSettings"
payload := strings.NewReader("{\n \"emptyPairTags\": true,\n \"emptyTagContent\": true,\n \"emptyTranslation\": true,\n \"excludeLockedSegments\": true,\n \"forbiddenStrings\": [\n \"<string>\"\n ],\n \"forbiddenTerms\": true,\n \"formatting\": true,\n \"ignoreNotApprovedTerms\": true,\n \"inconsistentTagContent\": true,\n \"inconsistentTranslation\": true,\n \"joinTags\": true,\n \"leadingAndTrailingSpaces\": true,\n \"missingNumbers\": true,\n \"moraviaQA\": {\n \"enabled\": true,\n \"profile\": \"<string>\"\n },\n \"multipleSpaces\": true,\n \"newerAtPrecedingWorkflowStep\": true,\n \"regexp\": {\n \"rules\": [\n {\n \"description\": \"<string>\",\n \"id\": \"<string>\",\n \"ignorable\": true,\n \"instant\": true,\n \"sourceRegexp\": \"<string>\",\n \"targetRegexp\": \"<string>\"\n }\n ]\n },\n \"repeatedWords\": true,\n \"segmentNotConfirmed\": true,\n \"spellCheck\": true,\n \"strictJobStatus\": false,\n \"targetLengthMax\": 1,\n \"targetLengthPerSegment\": true,\n \"targetLengthPercent\": 1,\n \"terminology\": true,\n \"trailingPunctuation\": true,\n \"trailingSpace\": true,\n \"unresolvedComment\": true,\n \"xliffTags\": true\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/qaSettings")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"emptyPairTags\": true,\n \"emptyTagContent\": true,\n \"emptyTranslation\": true,\n \"excludeLockedSegments\": true,\n \"forbiddenStrings\": [\n \"<string>\"\n ],\n \"forbiddenTerms\": true,\n \"formatting\": true,\n \"ignoreNotApprovedTerms\": true,\n \"inconsistentTagContent\": true,\n \"inconsistentTranslation\": true,\n \"joinTags\": true,\n \"leadingAndTrailingSpaces\": true,\n \"missingNumbers\": true,\n \"moraviaQA\": {\n \"enabled\": true,\n \"profile\": \"<string>\"\n },\n \"multipleSpaces\": true,\n \"newerAtPrecedingWorkflowStep\": true,\n \"regexp\": {\n \"rules\": [\n {\n \"description\": \"<string>\",\n \"id\": \"<string>\",\n \"ignorable\": true,\n \"instant\": true,\n \"sourceRegexp\": \"<string>\",\n \"targetRegexp\": \"<string>\"\n }\n ]\n },\n \"repeatedWords\": true,\n \"segmentNotConfirmed\": true,\n \"spellCheck\": true,\n \"strictJobStatus\": false,\n \"targetLengthMax\": 1,\n \"targetLengthPerSegment\": true,\n \"targetLengthPercent\": 1,\n \"terminology\": true,\n \"trailingPunctuation\": true,\n \"trailingSpace\": true,\n \"unresolvedComment\": true,\n \"xliffTags\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/qaSettings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"emptyPairTags\": true,\n \"emptyTagContent\": true,\n \"emptyTranslation\": true,\n \"excludeLockedSegments\": true,\n \"forbiddenStrings\": [\n \"<string>\"\n ],\n \"forbiddenTerms\": true,\n \"formatting\": true,\n \"ignoreNotApprovedTerms\": true,\n \"inconsistentTagContent\": true,\n \"inconsistentTranslation\": true,\n \"joinTags\": true,\n \"leadingAndTrailingSpaces\": true,\n \"missingNumbers\": true,\n \"moraviaQA\": {\n \"enabled\": true,\n \"profile\": \"<string>\"\n },\n \"multipleSpaces\": true,\n \"newerAtPrecedingWorkflowStep\": true,\n \"regexp\": {\n \"rules\": [\n {\n \"description\": \"<string>\",\n \"id\": \"<string>\",\n \"ignorable\": true,\n \"instant\": true,\n \"sourceRegexp\": \"<string>\",\n \"targetRegexp\": \"<string>\"\n }\n ]\n },\n \"repeatedWords\": true,\n \"segmentNotConfirmed\": true,\n \"spellCheck\": true,\n \"strictJobStatus\": false,\n \"targetLengthMax\": 1,\n \"targetLengthPerSegment\": true,\n \"targetLengthPercent\": 1,\n \"terminology\": true,\n \"trailingPunctuation\": true,\n \"trailingSpace\": true,\n \"unresolvedComment\": true,\n \"xliffTags\": true\n}"
response = http.request(request)
puts response.read_body{
"emptyPairTags": true,
"emptyTagContent": true,
"emptyTranslation": true,
"excludeLockedSegments": true,
"extraNumbers": true,
"forbiddenStrings": {
"enabled": true,
"list": [
"<string>"
]
},
"forbiddenTerms": true,
"formatting": true,
"fuzzyInconsistency": true,
"ignoreInAllWorkflowSteps": true,
"ignoreNotApprovedTerms": true,
"inconsistentTagContent": true,
"inconsistentTranslation": true,
"joinTags": true,
"leadingAndTrailingSpaces": true,
"missingNonTranslatableAnnotation": true,
"missingNumbers": true,
"moravia": {
"enabled": true,
"profile": "<string>"
},
"multipleSpaces": true,
"nestedTags": true,
"newerAtPrecedingWorkflowStep": true,
"regexp": {
"rules": [
{
"description": "<string>",
"id": "<string>",
"ignorable": true,
"instant": true,
"sourceRegexp": "<string>",
"targetRegexp": "<string>"
}
]
},
"repeatedWords": true,
"segmentNotConfirmed": true,
"spellCheck": true,
"strictJobStatus": true,
"targetLength": {
"enabled": true,
"max": 123
},
"targetLengthPerSegment": true,
"targetLengthPercent": {
"enabled": true,
"max": 123
},
"targetSourceIdentical": true,
"terminology": true,
"trailingPunctuation": true,
"trailingSpace": true,
"unmodifiedFuzzyTranslation": true,
"unmodifiedFuzzyTranslationMTNT": true,
"unmodifiedFuzzyTranslationTM": true,
"unresolvedComment": true,
"xliffTags": true
}Edit quality assurance settings
curl --request PUT \
--url https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/qaSettings \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"emptyPairTags": true,
"emptyTagContent": true,
"emptyTranslation": true,
"excludeLockedSegments": true,
"forbiddenStrings": [
"<string>"
],
"forbiddenTerms": true,
"formatting": true,
"ignoreNotApprovedTerms": true,
"inconsistentTagContent": true,
"inconsistentTranslation": true,
"joinTags": true,
"leadingAndTrailingSpaces": true,
"missingNumbers": true,
"moraviaQA": {
"enabled": true,
"profile": "<string>"
},
"multipleSpaces": true,
"newerAtPrecedingWorkflowStep": true,
"regexp": {
"rules": [
{
"description": "<string>",
"id": "<string>",
"ignorable": true,
"instant": true,
"sourceRegexp": "<string>",
"targetRegexp": "<string>"
}
]
},
"repeatedWords": true,
"segmentNotConfirmed": true,
"spellCheck": true,
"strictJobStatus": false,
"targetLengthMax": 1,
"targetLengthPerSegment": true,
"targetLengthPercent": 1,
"terminology": true,
"trailingPunctuation": true,
"trailingSpace": true,
"unresolvedComment": true,
"xliffTags": true
}
'import requests
url = "https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/qaSettings"
payload = {
"emptyPairTags": True,
"emptyTagContent": True,
"emptyTranslation": True,
"excludeLockedSegments": True,
"forbiddenStrings": ["<string>"],
"forbiddenTerms": True,
"formatting": True,
"ignoreNotApprovedTerms": True,
"inconsistentTagContent": True,
"inconsistentTranslation": True,
"joinTags": True,
"leadingAndTrailingSpaces": True,
"missingNumbers": True,
"moraviaQA": {
"enabled": True,
"profile": "<string>"
},
"multipleSpaces": True,
"newerAtPrecedingWorkflowStep": True,
"regexp": { "rules": [
{
"description": "<string>",
"id": "<string>",
"ignorable": True,
"instant": True,
"sourceRegexp": "<string>",
"targetRegexp": "<string>"
}
] },
"repeatedWords": True,
"segmentNotConfirmed": True,
"spellCheck": True,
"strictJobStatus": False,
"targetLengthMax": 1,
"targetLengthPerSegment": True,
"targetLengthPercent": 1,
"terminology": True,
"trailingPunctuation": True,
"trailingSpace": True,
"unresolvedComment": True,
"xliffTags": True
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
emptyPairTags: true,
emptyTagContent: true,
emptyTranslation: true,
excludeLockedSegments: true,
forbiddenStrings: ['<string>'],
forbiddenTerms: true,
formatting: true,
ignoreNotApprovedTerms: true,
inconsistentTagContent: true,
inconsistentTranslation: true,
joinTags: true,
leadingAndTrailingSpaces: true,
missingNumbers: true,
moraviaQA: {enabled: true, profile: '<string>'},
multipleSpaces: true,
newerAtPrecedingWorkflowStep: true,
regexp: {
rules: [
{
description: '<string>',
id: '<string>',
ignorable: true,
instant: true,
sourceRegexp: '<string>',
targetRegexp: '<string>'
}
]
},
repeatedWords: true,
segmentNotConfirmed: true,
spellCheck: true,
strictJobStatus: false,
targetLengthMax: 1,
targetLengthPerSegment: true,
targetLengthPercent: 1,
terminology: true,
trailingPunctuation: true,
trailingSpace: true,
unresolvedComment: true,
xliffTags: true
})
};
fetch('https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/qaSettings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/qaSettings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'emptyPairTags' => true,
'emptyTagContent' => true,
'emptyTranslation' => true,
'excludeLockedSegments' => true,
'forbiddenStrings' => [
'<string>'
],
'forbiddenTerms' => true,
'formatting' => true,
'ignoreNotApprovedTerms' => true,
'inconsistentTagContent' => true,
'inconsistentTranslation' => true,
'joinTags' => true,
'leadingAndTrailingSpaces' => true,
'missingNumbers' => true,
'moraviaQA' => [
'enabled' => true,
'profile' => '<string>'
],
'multipleSpaces' => true,
'newerAtPrecedingWorkflowStep' => true,
'regexp' => [
'rules' => [
[
'description' => '<string>',
'id' => '<string>',
'ignorable' => true,
'instant' => true,
'sourceRegexp' => '<string>',
'targetRegexp' => '<string>'
]
]
],
'repeatedWords' => true,
'segmentNotConfirmed' => true,
'spellCheck' => true,
'strictJobStatus' => false,
'targetLengthMax' => 1,
'targetLengthPerSegment' => true,
'targetLengthPercent' => 1,
'terminology' => true,
'trailingPunctuation' => true,
'trailingSpace' => true,
'unresolvedComment' => true,
'xliffTags' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/qaSettings"
payload := strings.NewReader("{\n \"emptyPairTags\": true,\n \"emptyTagContent\": true,\n \"emptyTranslation\": true,\n \"excludeLockedSegments\": true,\n \"forbiddenStrings\": [\n \"<string>\"\n ],\n \"forbiddenTerms\": true,\n \"formatting\": true,\n \"ignoreNotApprovedTerms\": true,\n \"inconsistentTagContent\": true,\n \"inconsistentTranslation\": true,\n \"joinTags\": true,\n \"leadingAndTrailingSpaces\": true,\n \"missingNumbers\": true,\n \"moraviaQA\": {\n \"enabled\": true,\n \"profile\": \"<string>\"\n },\n \"multipleSpaces\": true,\n \"newerAtPrecedingWorkflowStep\": true,\n \"regexp\": {\n \"rules\": [\n {\n \"description\": \"<string>\",\n \"id\": \"<string>\",\n \"ignorable\": true,\n \"instant\": true,\n \"sourceRegexp\": \"<string>\",\n \"targetRegexp\": \"<string>\"\n }\n ]\n },\n \"repeatedWords\": true,\n \"segmentNotConfirmed\": true,\n \"spellCheck\": true,\n \"strictJobStatus\": false,\n \"targetLengthMax\": 1,\n \"targetLengthPerSegment\": true,\n \"targetLengthPercent\": 1,\n \"terminology\": true,\n \"trailingPunctuation\": true,\n \"trailingSpace\": true,\n \"unresolvedComment\": true,\n \"xliffTags\": true\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/qaSettings")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"emptyPairTags\": true,\n \"emptyTagContent\": true,\n \"emptyTranslation\": true,\n \"excludeLockedSegments\": true,\n \"forbiddenStrings\": [\n \"<string>\"\n ],\n \"forbiddenTerms\": true,\n \"formatting\": true,\n \"ignoreNotApprovedTerms\": true,\n \"inconsistentTagContent\": true,\n \"inconsistentTranslation\": true,\n \"joinTags\": true,\n \"leadingAndTrailingSpaces\": true,\n \"missingNumbers\": true,\n \"moraviaQA\": {\n \"enabled\": true,\n \"profile\": \"<string>\"\n },\n \"multipleSpaces\": true,\n \"newerAtPrecedingWorkflowStep\": true,\n \"regexp\": {\n \"rules\": [\n {\n \"description\": \"<string>\",\n \"id\": \"<string>\",\n \"ignorable\": true,\n \"instant\": true,\n \"sourceRegexp\": \"<string>\",\n \"targetRegexp\": \"<string>\"\n }\n ]\n },\n \"repeatedWords\": true,\n \"segmentNotConfirmed\": true,\n \"spellCheck\": true,\n \"strictJobStatus\": false,\n \"targetLengthMax\": 1,\n \"targetLengthPerSegment\": true,\n \"targetLengthPercent\": 1,\n \"terminology\": true,\n \"trailingPunctuation\": true,\n \"trailingSpace\": true,\n \"unresolvedComment\": true,\n \"xliffTags\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/qaSettings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"emptyPairTags\": true,\n \"emptyTagContent\": true,\n \"emptyTranslation\": true,\n \"excludeLockedSegments\": true,\n \"forbiddenStrings\": [\n \"<string>\"\n ],\n \"forbiddenTerms\": true,\n \"formatting\": true,\n \"ignoreNotApprovedTerms\": true,\n \"inconsistentTagContent\": true,\n \"inconsistentTranslation\": true,\n \"joinTags\": true,\n \"leadingAndTrailingSpaces\": true,\n \"missingNumbers\": true,\n \"moraviaQA\": {\n \"enabled\": true,\n \"profile\": \"<string>\"\n },\n \"multipleSpaces\": true,\n \"newerAtPrecedingWorkflowStep\": true,\n \"regexp\": {\n \"rules\": [\n {\n \"description\": \"<string>\",\n \"id\": \"<string>\",\n \"ignorable\": true,\n \"instant\": true,\n \"sourceRegexp\": \"<string>\",\n \"targetRegexp\": \"<string>\"\n }\n ]\n },\n \"repeatedWords\": true,\n \"segmentNotConfirmed\": true,\n \"spellCheck\": true,\n \"strictJobStatus\": false,\n \"targetLengthMax\": 1,\n \"targetLengthPerSegment\": true,\n \"targetLengthPercent\": 1,\n \"terminology\": true,\n \"trailingPunctuation\": true,\n \"trailingSpace\": true,\n \"unresolvedComment\": true,\n \"xliffTags\": true\n}"
response = http.request(request)
puts response.read_body{
"emptyPairTags": true,
"emptyTagContent": true,
"emptyTranslation": true,
"excludeLockedSegments": true,
"extraNumbers": true,
"forbiddenStrings": {
"enabled": true,
"list": [
"<string>"
]
},
"forbiddenTerms": true,
"formatting": true,
"fuzzyInconsistency": true,
"ignoreInAllWorkflowSteps": true,
"ignoreNotApprovedTerms": true,
"inconsistentTagContent": true,
"inconsistentTranslation": true,
"joinTags": true,
"leadingAndTrailingSpaces": true,
"missingNonTranslatableAnnotation": true,
"missingNumbers": true,
"moravia": {
"enabled": true,
"profile": "<string>"
},
"multipleSpaces": true,
"nestedTags": true,
"newerAtPrecedingWorkflowStep": true,
"regexp": {
"rules": [
{
"description": "<string>",
"id": "<string>",
"ignorable": true,
"instant": true,
"sourceRegexp": "<string>",
"targetRegexp": "<string>"
}
]
},
"repeatedWords": true,
"segmentNotConfirmed": true,
"spellCheck": true,
"strictJobStatus": true,
"targetLength": {
"enabled": true,
"max": 123
},
"targetLengthPerSegment": true,
"targetLengthPercent": {
"enabled": true,
"max": 123
},
"targetSourceIdentical": true,
"terminology": true,
"trailingPunctuation": true,
"trailingSpace": true,
"unmodifiedFuzzyTranslation": true,
"unmodifiedFuzzyTranslationMTNT": true,
"unmodifiedFuzzyTranslationTM": true,
"unresolvedComment": true,
"xliffTags": true
}Authorizations
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.
Path Parameters
UID of the project
Body
Quality assurance settings to apply
Default: false
Default: false
Default: false
Default: false
Default: false
Default: false
Default: false
Default: false
Default: false
Default: false
Default: false
Default: false
Show child attributes
Show child attributes
Default: false
Default: false
Show child attributes
Show child attributes
Default: false
Default: false
Default: false
Linguists may not set jobs with unresolved QA warnings to Completed. default value: false
false
x >= 0Default: false
x >= 0Default: false
Default: false
Default: false
Default: false
Default: false
Response
OK
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?