Generate a date off the signing date
Monday, November 20, 2017 at 09:02amWhen I send a document to be signed, I'd like to auto populate a date field that is 30 days after the signing date. Is this possible with the SDK?
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: Generate a date off the signing date
Monday, November 20, 2017 at 11:19amReply to: Generate a date off the signing date
Monday, November 20, 2017 at 04:41pmReply to: Generate a date off the signing date
Wednesday, November 22, 2017 at 08:06amstring signerToken = eslClient.AuthenticationTokenService.CreateSignerAuthenticationToken(new PackageId("packageId"), "signerId"); AuthenticationClient authClient = new AuthenticationClient("https://sandbox.esignlive.com"); string sessionId = authClient.GetSessionIdForSignerAuthenticationToken(signerToken);Then, you use the sessionId as Cookie header to make the following REST call:POST https://sandbox.esignlive.com/api/packages/{packageId/documents/{documentId}/approvals/{approvalId}/fields/{fieldId} Headers: Cookie ESIGNLIVE_SESSION_ID={sessionId} Content-Type application/json { "value": "date 30 days from signing date here" }3. Finally, you can use thesignDocuments()to sign the signatures for the Company signer.