List translation exports
const headers = {
'Accept':'application/json'
};
fetch('https://{instance}.paligoapp.com/api/v2/translationexports/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
Responses
Status | Meaning | Description | Schema |
|---|---|---|---|
200 | Successful response. | Inline |
[
{
"id": "translationexport.1234-5678",
"status": "running",
"url": "https://myinstance.paligoapp.com/export-name.pdf",
"message": "Starting export."
}
]