Get The Document Link
Thursday, July 26, 2018 at 07:15amHello,
I am new to esignlive. I have created the document and getting email to sign the document working fine but what I want is instead of sending the email for the user, I want to get the document email so I can send it using my website instead of the user getting email.
Like this link:
https://sandbox.esignlive.com/auth?target=https%3A%2F%2Fsandbox.esignlive.com%2Ftransaction%2Fc6wbC2Puc9ArNMheCEOn_NfQ5OE%3D%2Fsign&loginToken=dHpET2NkL0FveXB5bnROdkM5ZmZFQkNOTENVQkZscmt0M00rcFFkTW5hL0I1ZGRHdGdBWEtSM0cxSzBDcjNhZnhFeWNxSG1Lc0ZYbzBQV25yMzk5UWpSMVZGaFdjRk40Y2twRFdVNVdibmxzU1dObmQzSjVSWGxtYUVnMGNYRjVUVFpVV0hCT1owWndhVVZGTVVSblZYQjZRWGhUYWtKRU1FdzJUMVp5VkZDalpZM21uY0lOYkZoRWhiY1ZhSkcwc1FWd1YwWlRPYlBla2hCSVljUDVIUT09
I want to get it from the code I am using in C#.
Thanks
Reply to: Get The Document Link
Thursday, July 26, 2018 at 07:34amHTTP Request GET /api/packages/{packageId}/roles/{roleId}/signingUrl HTTP Headers Accept: application/json Content-Type: application/json Authorization: Basic api_keyWhile in our SDK approach, what you need is signerId.(Can't be replaced by signer's email due to the SDK design itself) For more detailed explanation about signer and role, you can kindly check my latest blog, here. :) Hope this could help you! DuoReply to: Get The Document Link
Thursday, July 26, 2018 at 08:21amReply to: Get The Document Link
Thursday, July 26, 2018 at 09:04amReply to: Get The Document Link
Thursday, July 26, 2018 at 09:20amReply to: Get The Document Link
Thursday, July 26, 2018 at 09:47amReply to: Get The Document Link
Friday, July 27, 2018 at 08:25amReply to: Get The Document Link
Friday, July 27, 2018 at 04:43pmReply to: Get The Document Link
Monday, July 30, 2018 at 05:20amReply to: Get The Document Link
Monday, July 30, 2018 at 10:20amReply to: Get The Document Link
Monday, July 30, 2018 at 10:35amReply to: Get The Document Link
Monday, July 30, 2018 at 11:25amPOST /api/packages/{packageId}/documents/signed_documentsyou are able to sign for your sender. The only parameter is the package ID because the sender is unique to a package. DuoReply to: Get The Document Link
Monday, July 30, 2018 at 11:38amReply to: Get The Document Link
Monday, July 30, 2018 at 11:58amReply to: Get The Document Link
Tuesday, July 31, 2018 at 08:07amReply to: Get The Document Link
Tuesday, July 31, 2018 at 08:46am"fields": [ { "binding": null, "validation": null, "id": "field1", "page": 0, "height": 50, "subtype": "LABEL", "extractAnchor": null, "width": 200, "left": 100, "top": 200, "extract": false, "data": null, "type": "INPUT", "value": "field 1 value", "name": "field1" }, { "binding": null, "validation": null, "id": "field2", "page": 0, "height": 50, "subtype": "LABEL", "extractAnchor": null, "width": 200, "left": 100, "top": 300, "extract": false, "data": null, "type": "INPUT", "value": "field 2 value", "name": "field2" } ]DuoReply to: Get The Document Link
Tuesday, July 31, 2018 at 09:15am