Reputation: 11
Is there a way to sign a document via API silently without redirecting a user to DocuSign Signing UI or sending email?
Use case:
User connect to our application
User selects which documents need to be signed
User clicks sign button in our application (assume these documents ready for uploading)
Our app connects to DocuSign via a API and asked to sign those documents on behalf of the user (user by email for example. sometimes users might have accounts which got created via out application)?
In this case, user never able to see the DocuSign UI and our application does it for user silently.
Upvotes: 1
Views: 2387
Reputation: 49114
You can use the DocuSign Signing Appliance to programmatically sign a document (no user interaction). It is an on-premises piece of equipment designed for a high volume of digital signatures.
Instead of that, the usual UX flow, as Drew indicated, is to embed the DocuSign signing ceremony into your application. In this case, no email is sent to the signer. The flow looks like this:
Sign
button.You can try an example of this flow via workflow example #1 in our code examples:
Upvotes: 2
Reputation: 5029
DocuSign doesn't allow full white-labeling of the service. The closest you can get is directing the recipient to DocuSign for the signing ceremony through an Embedded Signing workflow, and then they are redirected back to your application after the fact.
Upvotes: 1