2019.1

Table Of Contents
var settings = {
type: "POST",
url:
"/rest/serverengine/filestore/OutputCreationConfig?persistent=" +
persistent,
data: file,
processData: false,
contentType: "application/xml"
};
if (named) settings.url += "&filename=" + file.name;
$.ajax(settings)
.done(function (response) {
c.displayStatus("Request Successful");
c.displayInfo("Output Creation Preset '" +
file.name + "' Uploaded Successfully");
c.displayResult("Managed File ID", response);
})
.fail(c.displayDefaultFailure);
});
});
}(jQuery, Common));
Page 143