Adding additional fields to the evidence summary PDF
Monday, October 17, 2016 at 05:18amHi,
I am wanting to add some extra fields to the evidence summary PDF that can be viewed after a signing session is complete. I have tried to follow the tutorial for Signer Session fields, but have not been able to get it to work (http://docs.e-signlive.com/mc/content/c_esignlive_integrator_s_guide/sdk/f_signing_documents/signer_session_management.htm#Signer). Is this possible to do? I am using the Java SDK v11.
Reply to: Adding additional fields to the evidence summary PDF
Monday, October 17, 2016 at 07:35amReply to: Adding additional fields to the evidence summary PDF
Monday, October 17, 2016 at 07:37amReply to: Adding additional fields to the evidence summary PDF
Monday, October 17, 2016 at 07:45amReply to: Adding additional fields to the evidence summary PDF
Monday, October 17, 2016 at 08:15amEslClient eslClient = new EslClient(MyInfo.API_KEY_SANDBOX, MyInfo.API_URL_SANDBOX); DocumentPackage pack = PackageBuilder.newPackageNamed("Test package!") .withSigner(SignerBuilder.newSignerWithEmail("[email protected]") .withFirstName("John") .withLastName("Smith") .withCustomId("signer1")) .withDocument(DocumentBuilder.newDocumentWithName("some doc") .fromFile("C:/Users/hhaidary/Desktop/PDFs/doc1.pdf") .withSignature(SignatureBuilder.captureFor("[email protected]") .atPosition(100, 100) .onPage(0))) .build(); PackageId packageId = eslClient.createAndSendPackage(pack); Map signerSessionFields = new LinkedHashMap();
signerSessionFields.put("somefieldkey", "tryingthisout......");
final String signerAuthenticationToken = eslClient.getAuthenticationTokensService().createSignerAuthenticationToken(packageId.getId(), "signer1", signerSessionFields);
System.out.println("https://sandbox.esignlive.com/access?sessionToken=" + signerAuthenticationToken); Attached is my example evidence summary.Reply to: Adding additional fields to the evidence summary PDF
Monday, October 17, 2016 at 10:52amReply to: Adding additional fields to the evidence summary PDF
Monday, October 17, 2016 at 11:04am