Account


Earned badges

Achievement: Latest Unlocked

Topic Started

Topics
Hi, Is there a way to build a package such that one signer would sign 2 documents. Here is an algorithm that I am looking at: 1. Use PAckageBuilder to build a package named 'OriginalPackage' 2.
Hi, When I try to updatePackage() I get the following exception. I am trying to update the package with additional signer information to a placeholder block in the document when I get this problem.
Hi, I have a requirement where I need to assign Signer details to a specific placeholder in a layout.
Hi , I have callback listener setup and configured to trigger when there is "PACKAGE COMPLETE" , "PACKAGE DECLINE" and "EMAIL BOUNCE" events.
Hi, I need to know how to get the layoutId of an existing layout that was created using eSL web portal. The requirement we have is; The user will send the layout name, document and signer info, we the

Replies Created

Reply to: Could not update role Exception

0 votes
Hi Micheal, Thank you for your response. This is actually a case where I have to do the following: 1. Build a package say 'PackageOne' 2. Add 2 documents to this PackageOne 3. Add multiple signers to each of these documents 4. Apply 2 different layouts to the 2 documents. Which will have different placeholder names for the signing blocks. 5. Based on a business logic I need to assign signers to each placeholder 6. Among the signers, one signer will need to sign 2 documents. 7. During the above 6 steps, PacakageOne will be in draft mode. I hope this helps clarify what I am trying to do. Thanks, Sudhangi

Reply to: Could not update role Exception

0 votes
Hi Michael, Thank you for your response. Let me try and simplify this for you. Below is a simple program very similar to what I am trying to do: int itr = 0; PackageId docLayoutId =null; Placeholder p1 =null; Placeholder p0 =null; List layouts = eslClient.getLayoutService().getLayouts(Direction.DESCENDING, new PageRequest(itr, 50)); for (DocumentPackage myLayout : layouts) { if (myLayout.getName().equals("SampleShare3") ) { docLayoutId = myLayout.getId(); p0 = new Placeholder( "Signer1"); p1 = new Placeholder( "Signer2"); break; } } PackageBuilder package1 = PackageBuilder.newPackageNamed("Layout"); package1.withSenderInfo(SenderInfoBuilder.newSenderInfo("[email protected]")); signer = SignerBuilder.newSignerWithEmail("[email protected]") .withFirstName("Sudhangi") .withLastName("ICFI").replacing(p1); package1.withSigner(signer); signer=SignerBuilder.newSignerWithEmail("[email protected]") .withFirstName("Dss") .withLastName("Dev").replacing(p0); package1.withSigner(signer); Document mydoc = DocumentBuilder.newDocumentWithName("TEST-AAAP-Short") .fromFile("/Users/SAmbekar/Desktop/Development/GSA/AAAP/TEST-AAAP-Short.PDF") .build(); package1.withDocument(mydoc); DocumentPackage completePackage = package1 .withAttributes(DocumentPackageAttributesBuilder.newDocumentPackageAttributes() .withAttribute("orgName", "IACP") .build()) .build(); PackageId packageId = eslClient.createPackage(completePackage); List packageDocuments= eslClient.getPackage(packageId).getDocuments(); for (int k = 1; k

Attachments

Subscriptions

Topics Replies Freshness Views Users
Hi, Is there a way to build a package such that one signer would sign 2 documents. Here is an algorithm that I am looking at: 1. Use PAckageBuilder to build a package named 'OriginalPackage' 2.
3 7 years 3 months ago 7
Profile picture for user harishaidary
Hi, When I try to updatePackage() I get the following exception. I am trying to update the package with additional signer information to a placeholder block in the document when I get this problem.
16 5 years 4 months ago 22
Profile picture for user Duo_Liang
Profile picture for user mwilliams
Hi, I have a requirement where I need to assign Signer details to a specific placeholder in a layout.
4 7 years 5 months ago 48
Profile picture for user harishaidary
Hi , I have callback listener setup and configured to trigger when there is "PACKAGE COMPLETE" , "PACKAGE DECLINE" and "EMAIL BOUNCE" events.
3 7 years 5 months ago 106
Profile picture for user harishaidary
Hi, I need to know how to get the layoutId of an existing layout that was created using eSL web portal. The requirement we have is; The user will send the layout name, document and signer info, we the
1 7 years 6 months ago 24
Profile picture for user harishaidary

Code Share

This user has not submitted any code shares.

Subscriptions Release Notes

This user is not subscribed to any release notes.