How to get all documents id of a package.
Sunday, December 30, 2018 at 09:55pmHow to get all documents id of a package. I have package id and want document Id of all documents those are part of this package.
OneSpan Introduces DigipassONE, Bringing a Unified Platform Approach to Authentication Modernization
A new authentication platform helps financial institutions support diverse customer authentication preferences while modernizing at their own pace Learn More
Reply to: How to get all documents id of a package.
Monday, December 31, 2018 at 01:25amDocumentPackage package1 = eslClient.getPackage(new PackageId("fH72KjmieKD7TYBr0z-huqVbMf0=")); List documentIds = new ArrayList>();
for (Document document : package1.getDocuments()) {
documentIds.add(document.getId().getId());
}
System.out.println("documentIds = "+documentIds); Hope this could help! Duo