Document Id Unique
Friday, February 24, 2017 at 06:05amHi There,
I am working on creating a package with a document that has an Id assigned to it:
.withDocument( newDocumentWithName( "Second Document" )
.fromFile( "src/main/Resources/document.pdf" )
.withId( documentId )
I was wondering if this Id needs to be globally unique among all packages? Or does it have to be unique only for that package? I want to use this Id to download the signed file later using the following function:
byte[] pdfDocumentBytes = eslClient.downloadDocument(packageId, documentId);
Reply to: Document Id Unique
Friday, February 24, 2017 at 06:30am