Hi there,
When we setup a duplex job with transaction table, it may automaticly adding a blank impression at the end of the doc to force the file can be printed in duplex.
Is there anyway I can get this blank impression count from Workflow by using REST API?
I try to get contentsets from REST API and using following code to get page count, and those count have included the blank impressions already, so that is there anyway I can tell which are blank impression?
var contentsetsPageDetails = JSON.parse(xhttp.responseText);
var contentsetsPageDetailMap = {};
var contentItemsLength = contentsetsPageDetails.length
for (var idx = 0 ; idx < contentItemsLength; idx++) {
contentsetsPageDetailMap['' + contentsetsPageDetails[idx].id] = contentsetsPageDetails[idx].pages;
}
Many thanks