Hiding package owner in the signers dropdown in designer view
Thursday, August 11, 2016 at 06:51amHi,
How can we hide the package owner in the drop down list of signers in the designer view (when the owner is not a signer)?
Thanks,
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: Hiding package owner in the signers dropdown in designer view
Thursday, August 11, 2016 at 11:31amReply to: Hiding package owner in the signers dropdown in designer view
Friday, August 12, 2016 at 06:39amReply to: Hiding package owner in the signers dropdown in designer view
Friday, August 12, 2016 at 07:20amReply to: Hiding package owner in the signers dropdown in designer view
Friday, August 12, 2016 at 08:07amReply to: Hiding package owner in the signers dropdown in designer view
Friday, August 12, 2016 at 11:52amDocumentPackage samplePackage = PackageBuilder.newPackageNamed("Sample Package") .describedAs("This is a sample package") .withSigner(SignerBuilder.newSignerWithEmail(SIGNER1_EMAIL) .withFirstName("John") .withLastName("Smith") .withCustomId(signerId1) .withSigner(SignerBuilder.newSignerWithEmail(SIGNER2_EMAIL) .withFirstName("Ron") .withLastName("Stevens") .withCustomId(signerId2)) .withSettings(DocumentPackageSettingsBuilder.newDocumentPackageSettings() .withInPerson()) .withDocument(DocumentBuilder.newDocumentWithName("Sample Document") .withId("documentId1") .fromStream(doc, DocumentType.WORD)) .build(); PackageId packageId = eslClient.createPackage(samplePackage); System.out.println("Package created: " + packageId.getId()); String senderAuthenticationToken = eslClient.getAuthenticationTokensService().createSenderAuthenticationToken(packageId.getId()); String generatedLinkToDesignerForSender = authenticationClient.buildRedirectToDesignerForSender(senderAuthenticationToken, packageId.getId()); System.out.println("Designer URL: " + generatedLinkToDesignerForSender);And here is the code to open the designer for a layoutDocumentPackage samplePackage = PackageBuilder.newPackageNamed("Sample Layout - "+Calendar.getInstance().getTimeInMillis()) .describedAs("This is a sample package") .withSigner(SignerBuilder.newSignerPlaceholder(new Placeholder(ROLE1))) .withSigner(SignerBuilder.newSignerPlaceholder(new Placeholder(ROLE2))) .withDocument(DocumentBuilder.newDocumentWithName("Sample Document") .withId("documentId1") .fromStream(doc, DocumentType.WORD)) .build(); PackageId packageId = eslClient.createPackage(samplePackage); samplePackage.setId(packageId); System.out.println("Package created: " + packageId.getId()); String layoutId = eslClient.getLayoutService().createLayout(samplePackage); System.out.println("Layout created: " + layoutId); String senderAuthenticationToken = eslClient.getAuthenticationTokensService().createSenderAuthenticationToken(layoutId); String generatedLinkToDesignerForSender = authenticationClient.buildRedirectToDesignerForSender(senderAuthenticationToken, layoutId); System.out.println("Designer URL: " + generatedLinkToDesignerForSender);When I open the designer URL printed above the owner is in the list. See the screenshots attached. The first one in the list is my name which is the owner. Thanks,Reply to: Hiding package owner in the signers dropdown in designer view
Tuesday, August 16, 2016 at 11:20amReply to: Hiding package owner in the signers dropdown in designer view
Monday, August 22, 2016 at 08:47amReply to: Hiding package owner in the signers dropdown in designer view
Wednesday, August 24, 2016 at 10:52amReply to: Hiding package owner in the signers dropdown in designer view
Wednesday, October 11, 2017 at 09:56am