This section describes an obsolete packaging solution. We recommend using 3D mockups for packaging, which are integrated into the Customer's Canvas cloud.
ListDieCutModels
- Less than a minute to read
The ~/api/Origami/ListDieCutModels endpoint returns an array of identifiers of available Die-Cut models. These identifiers represent file names without extensions in the Origami.DieCutModelPath location.
Request type
[GET]
URL
~/api/Origami/ListDieCutModels
Example call
$.ajax({
type: "GET",
url: appUrl + "api/Origami/ListDieCutModels",
dataType: 'json',
contentType: "application/json; charset=utf-8",
success: function (data, textStatus, jqXHR) {
console.log("Die cut model list: " + JSON.stringify(data));
}
});
Success response
Status Code: 200 OK
Content:
[
"ECMA A20.20.03.01 ReversedTuckEnd",
"ECMA A20.21.03.01",
"ECMA A55.20.01.01 DisplayOuterSnapLockBase",
"ECMA B21.05.00.00 GluedBufferWallTray",
"ECMA F70.01.00.00",
"FEFCO 0215",
"FEFCO 0217",
"FEFCO 0717"
]