Draw signature and upload via DocuSign API - docusignapi

I have a question. Is there any possibility to draw a sign for document usign API? I have a webpage with canvas. Can i send the picture sign via API? C# for example. Thanks in advance.

I think you're asking:
Can I upload a person's graphical signature to DocuSign via the API?
The answer is yes. See the docs for UserSignatures: create method. This method is not included with the SDK, you will need to call it directly.
If, instead, you're asking:
With DocuSign, can my app sign a document by sending a graphical signature via the API?
The answer is No. Documents are signed by using the DocuSign Signing Ceremony either directly or by embedding the Signing Ceremony within your application. See the embedded signing docs.

Related

Is there any way to sign the document in our own application without going to DocuSign website?

Right now I can't find a way to have the user to sign the document using DocuSign in our own application. What I need to do:
Have the user sign the document in our own application.
Get the signature with an API from DocuSign
Any help will be so much appreciated.
Yes, this is called "embedded signing" and is one of the most popular use-cases with the DocuSign eSign API.
Here is the Node.js code example to do this:
https://github.com/docusign/code-examples-node/blob/master/lib/eSignature/examples/embeddedSigning.js

DocuSign Api signing control placement

I need to integrate docusign into our portal.Our users will come to our portal and
then upload documents and using DocuSign API we need to sign docs. I was able to
get it working embedded. Now the problem is the placement of signing controls
(Where the signature should appear in the docs)
Can I upload the documents to DocuSign portal straight and then using API
sign it from my portal? The idea is that the envelope creator can place all
the signature using the nice interface in DocuSign...Would this be possible?
Or is there a way I can integrate the placement of signing controls part
on my portal using DocuSign?
Any thoughts would be greatly appreciated.
thanks
Yes, you can do that.
Check out this code example on the DocuSign Developer Center:
https://developers.docusign.com/esign-rest-api/code-examples/code-example-embedded-sending
If you told me which code lang you use - I can put some code in here too.

Can following be achieved using Docusign APIs?

I'm trying to achieve some requirements via Docusign APIs. Would like to know if it's possible before I start the project.
I've used Docusign app for Salesforce earlier, but now I'm trying to achieve some functionalities through API calls
Ability for a Signed Document sent to a contact (by clicking on a button on contact record) to be attached to the Contact record it was sent from
Ability to write back to the record from a field tagged on the DocuSign envelope
Vinay, this functionality is available using the DocuSign for Salesforce integration. If you would like to write it yourself using APIs, you can start by looking at our Apex toolkit here - https://developers.docusign.com/salesforce/guides/apex-toolkit

Is it possible to simulate signing of a document via DocuSign API?

I'm working on testing our application and have the need to simulate signing of a document via the API. These aren't real documents I just need to be able to set the signing the order in a specific order but I don't receive emails for recipients until the previous one has signed. So is it possible to use the DocuSign API to sign a "Sign Here" tab? Or do I have any other options?
I haven't been able to find any clear information on this topic although I fear the answer is not. Looking through DocuSign's REST API there's a couple of endpoints that suggests I might be able to do this but I'm not quite sure it's referencing what I'm looking to do. The following endpoint has a GET and PUT function but not sure it's what I want.
{{baseUrl}}/envelopes/{{envelopeId}}/recipients/{{recipientId}}/signature_image
No, the DocuSign API does not have a functionality for 'robo-signing'.
If the goal is to check routing order, you could change a Signer to a Carbon Copy recipient: CC roles are immediately completed.
For reference, the signature_image API calls allow you to view or change a user's adopted signatures. They shouldn't be used to apply a signature to a document.

DocuSign API Create Envelope

Currently I am using #DocuSignAPI to create envelope in which API required x and y position to add signature from recipients.
So my requirement is like if i upload the document it should be redirect to the Docusign UI where recipient would login and sign the document.
So the thing is instead of creating rest call via API.
I need some api where Docusign is going to handle by its way so i do not need to create UI for that which is very complex to build from my side.
Anyone can help me with is will be really great.
Thanks in advance
Check out this DocuSign recipe: Sign from Your App.
This sample (and many others) are available on the DocuSign Developer Center, along with tons of documentation about various integration scenarios and API reference.

Resources