Is it possible for a user to sign his/her own signature even he/she doesn't have a DocuSign account? In the github code example (https://github.com/docusign/qs-csharp) I found that account id is passed in parameter. So please let me know how it is possible to sign without docusign account. If possible, please share any specific code example/ api link/demo that can be helpful.
Asked
Active
Viewed 826 times
1 Answers
0
Yes, it is possible. the account in this example (accountId parameter) is for the API call. Someone (the sender) has to have an account. But signers of your code do not need to. Again, you specify one accountId, for the overall account and then just have other users sign - they do not need an account. try this code example - https://github.com/docusign/code-examples-csharp but make sure you create your Integration Key and use OAuth correctly.

Larry K
- 47,808
- 15
- 87
- 140

Inbar Gazit
- 12,566
- 1
- 16
- 23
-
Thanks for the reply. I am going to try this. I guess that this process does not necessarily send mail to the recipient too but an integrated automation process of single button click will also work to generate signed documents of predefined users. I am also bit confused of "IK"...can you please explain? – Abhratanu B Jun 22 '20 at 04:17
-
there are two ways to do that - Embedded Signing (in your app, no email) or Remote Signing (not in your app - an email with link is sent). You can choose either one. – Inbar Gazit Jun 22 '20 at 16:29
-
Thanks for the reply. I have run the code example mentioned by you successfully. Now I want in Embedded Signing Ceremony not to have the signing UI in the middle but I want to send all the parameters from code variable at runtime to sign the documents. So in the single button click the targeted docs(may be there will be just a brows popup to upload the pdfs) will be signed and through the download api will be downloaded and only after that we will be able to see the signature on the documents. Is it possible? If yes it will be helpful to have any suggestion regarding the approach. – Abhratanu B Jun 22 '20 at 16:35
-
can't do that in a single button click. You can use the webhook (Connect) to get a notification in your app when document is signed and download the complete PDF at that point. Or you can redirect back to your app and check if document is signed and download/show it. – Inbar Gazit Jun 22 '20 at 17:36
-
Thanks for the reply. Is multiple documents signing possible in the embedded signing? – Abhratanu B Jun 23 '20 at 04:02
-
yes, it is. You can have as many documents as you need – Inbar Gazit Jun 23 '20 at 04:33
-
Please, if I answered your question ,marked it as answered. You can always ask additional questions separately. – Inbar Gazit Jun 23 '20 at 04:33
-
Sure. Thanks Inbar. – Abhratanu B Jun 23 '20 at 08:16