Implement DocuSign in Ionic 3 Application - docusignapi

I am looking to incorporate the features of DocuSign in Ionic 3 Application where I need to get PDF files signed which are confidential files.
In the SDK & Tools document provided by DocuSign, I didn't see any client side implementation. How the DocuSign signing feature can be incorporated in a Hybrid Mobile Application.
Or is it possible to get a signature link by incorporating the API implementations in server side. If signature link got generated rather than email, the link can be passed to client Application and signature can be obtained with the layer.

yes, the best approach is to make the API calls from the server. And yes, it's possible to generate the link and use what we call "embedded signing" which means that instead of an email sent to the recipient, the recipient is using your app to sign directly.
Here is a link to code examples of how to generate and envelope and use embedded signing:
https://developers.docusign.com/esign-rest-api/code-examples/code-example-embedded-signing (in 7 different languages, not sure which one you may want, so I didn't include code in this answer)

Related

DocuSign embedded document, with prefilled name and 3 spots to sign

I have a Django website, and each account needs a DocuSign section where everyone gets the same document loaded/embedded but has their own name prefilled on the application and has the same 3 spots for signing. What API tools from DocuSign should I look into in order to accomplish this?
You can start by downloading the python code example. There are 31 API scenarios examples. You can reference API calls documentation in here. As it looks like you are going to use embedded signing a great place to read about this is here

Docusign Agent have to sign document first before sending it to client

Is it possible through DocuSign so that after completing any application agent will sign the application first before sending it to the client for signature
It means I am expecting a functionality mix of Face to Face and Remote signing.
I think what you are looking for is a special kind of recipient in the DocuSign system called "In Person Recipient" which works exactly how you describe.
The agent gets it and then give his ipad (or whatever device) to the actual signer.
https://support.docusign.com/en/guides/ndse-user-guide-in-person-signing
You can set it using API as well by following this:
https://developers.docusign.com/esign-rest-api/code-examples/code-example-embedded-signing

How to tell if DocuSign envelope was wet signed via API

I am trying to determine if a DocuSign envelope was wet-signed (i.e. downloaded, signed, uploaded/faxed) after I receive the notification that it was signed. For my project, we need to review wet-signed contracts before processing. I do not see a way in the REST API to determine this. When I call /v2/accounts/{accountId}/envelopes/{envelopeId}/documents, it comes back with list of documents and it says signature type is "electronic" even though I wet-signed it when testing. I am using a sandbox account, so that could be a factor. Any help would be appreciated, thanks!
Check the Envelopes::listAuditEvents API method to see if it provides the information you need.

Docusign Embedded Signing using template

I need steps/procedure for recipient to sign via nodejs application using template.Currently i am using the docusign node sdk.I would like to embed the signing into the application (Embedded Signing) through the API rather than opening DocuSign in another window.
I'd suggest you take a look at the DocuSign Recipes. The Recipes include node.js code samples for "send a signing request with a template (via email)" and also for "signing from within your app" -- between these two examples, you should be able to get code to accomplish your objective. If you're unable to get it working using those examples, then edit your post above to include your code and ask for feedback. (You're more likely to get help here on SO if you post your code and say "this is what I've tried..." than if you just expect someone to provide you the complete solution.)

Two different signatures in one envelope by using embedded signing view REST API PHP

We are using REST API to sign on docusign documents in our application. Its working great when I used REST API (Embedded Signing).
But we got new requirement as below.
Actually parents/childrens are joined in our application, at the time of joining we are taking parent signature on the documents as of now, new change is need to take children signature as well in the same envelope on the documents at the same time.
Is it possible with using REST API PHP? Please help on this ASAP.
Thanks,
Srinivas Reddy. A
The answer in this post describes the process/flow for conducting embedded signing for multiple recipients:
I need to get Document signature by Spouse and its optional. how to do it with Docusign?

Resources