Create translation export
const inputBody = '{
"document": 123,
"source": "en",
"target": [
"es"
],
"format": "xliff",
"approved": true,
"fuzzy": false,
"force": true
}';
const headers = {
'Content-Type':'application/json',
'Accept':'application/json'
};
fetch('https://{instance}.paligoapp.com/api/v2/translationexports/',
{
method: 'POST',
body: inputBody,
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
Body parameter
{
"document": 123,
"source": "en",
"target": [
"es"
],
"format": "xliff",
"approved": true,
"fuzzy": false,
"force": true
}
Responses
Status | Meaning | Description | Schema |
|---|---|---|---|
200 | Successful response. |