Remove Signature that is stored @package level
Wednesday, July 4, 2018 at 10:58pmHello Team,
Can we remove the signature that is captured @Package Level which we use to apply again on the further docs of that package. Instead of creating new package to capture new signature on Signer change.
Thanks,
Navya.
Reply to: Remove Signature that is stored @package level
Thursday, July 5, 2018 at 05:51am"enforceCaptureSignature": falseBy default, it's false. You can contact [email protected] to set enforce capture on your account. Or you can set this attribute in your request payload on a transaction by transaction basis:"settings":{ "ceremony":{ "enforceCaptureSignature": true } }Hope this reply could help you!Reply to: Remove Signature that is stored @package level
Friday, July 6, 2018 at 04:37amReply to: Remove Signature that is stored @package level
Friday, July 6, 2018 at 12:32pmGET /packages/{packageId}/documents/{documentId}/approvals/{approvalId} GET /packages/{packageId}/roles/{roleId}(2) download image format of signature(guidance) via api and change it to base 64 string by import tool:GET /api/packages/{packageId}/roles/{roleId}/signatureImage2.Store this handdrawn as well as signer's email in your application system. 3.Next time before sending a package, if you want to upload a captured signature for a signer, add this handdrawn attribute into role block of your request payload like below:"roles":[ { "id":"Signer1", "type":"SIGNER", "signers":[ { "email":"[email protected]", "firstName":"1_firstname", "lastName":"1_lastname", "id":"Signer1", "signature":{ "handdrawn":"signer's handdrawn value" } } ], "name":"Signer1" } ]Hope you find this reply helpful!Reply to: Remove Signature that is stored @package level
Tuesday, July 10, 2018 at 05:30amReply to: Remove Signature that is stored @package level
Tuesday, July 10, 2018 at 07:00amPUT /api/packages/{packageId}/roles/{roldId}3. Add three more documents, assigned signatures for signers and send package again. In this approach, you don't need to change the "enforceCaptureSignature" in settings. If the handdrawn attribute is cleared, signers are prompted to capture their signature again, and would definitely applied to 7th 8th document. Hope this reply could help you!Reply to: Remove Signature that is stored @package level
Thursday, July 12, 2018 at 05:05amReply to: Remove Signature that is stored @package level
Thursday, July 12, 2018 at 05:34amGET /api/packages/{packageId}/roles/{roleId}2. Copy all the response payload, just remove the "signature" block, below is an example of what you need to remove:"signature": { "handdrawn": "AQAAAGsVwznvKxzHeRQGPs+tZ2WUApQAAwADAJkAAAADAAAAlAKUAEcAAAACXhVAJEAFQB5BA0E4QQdBAEAGUCZQDFEAcVlwTnBNcE9wF1CSQHFAk0DlQNdAqWAZYCdgS2BaYDVQl1BWUOpQtEDQQKFAnEAqQAdARUAUUHFQV1B6UIpQRUCJQIpAZkCEQHJAYEBwUIFQZVA1UFRQc0DgQOVApI5AUUBgQHBQF3ArcLdwwnRyYLBgUKs=", "textual": null },3. Use this json as the request payload for the update call: PUT /api/packages/{packageId}/roles/{roldId} Please make sure the status of package is in "DRAFT", otherwise you won't be able to update attributes. Hope this could help me and please tell me if there's any other issues!Reply to: Remove Signature that is stored @package level
Thursday, July 12, 2018 at 05:48amReply to: Remove Signature that is stored @package level
Thursday, July 12, 2018 at 06:15amReply to: Remove Signature that is stored @package level
Thursday, July 12, 2018 at 06:28amReply to: Remove Signature that is stored @package level
Thursday, July 12, 2018 at 07:12amPOST /api/account/senders/{senderId}with payload:{ "signature": { "handdrawn": null, "textual": null } }(2)Then you can upload your role by the same approach mentioned above. 2. Or you can create another package, try again and tell me the package id.Reply to: Remove Signature that is stored @package level
Thursday, July 12, 2018 at 07:39amReply to: Remove Signature that is stored @package level
Monday, July 16, 2018 at 01:56pmReply to: Remove Signature that is stored @package level
Tuesday, July 17, 2018 at 04:14amReply to: Remove Signature that is stored @package level
Tuesday, July 17, 2018 at 06:23amReply to: Remove Signature that is stored @package level
Saturday, July 21, 2018 at 11:36amPackage is moved to DRAFT mode Using GET, role for which signature must be cleared, is retrieved One particular tag signature is removed from payload Using a PUT call, modified payload is successfully sent to server Package is moved to SENT mode
The only problem here is, while response from PUT call shows the signature tag to be null, re-fetching the role using a GET call shows the signature value. Images showing same are attached for your reference. Also, in the information shared through mail, it is observed that documents are immediately being uploaded to package after signer's signature is cleared. But as per our business need, this is not feasible. Documents will be added to this package in future using a different procedure altogether. Business Need: In a scenario where customer leaves after signing but had to revisit & sign few more documents the next day. In this case:New package creation, maintenance is proving to be costly for us Enforcing hand drawn signatures at package level is proving to be tiresome for user Applying the same signature, captured previous day is bewildering user
Customers are little hesitant about persisting their signature even after they completed signing & left the place. Hope our challenge & business need is clearer to you now.Reply to: Remove Signature that is stored @package level
Monday, September 10, 2018 at 03:30pmReply to: Remove Signature that is stored @package level
Friday, September 14, 2018 at 02:38amReply to: Remove Signature that is stored @package level
Friday, September 14, 2018 at 06:07am