I want to build a system where a document is to be signed by the user. It may be the case that user takes 10 days to sign the document or even in minutes things are done.
Using Remote signing : User will receive the mail from third party app, and the validity of that signing link is long like 10-15 days.
Using Embedded signing : User will have to sign the document within minutes. No mail is received from 3rd party app.
I want to have a hybrid kind of system, where our system should send the mail containing the signing link to user and that link should be valid for 10-15 days.
There are workarounds for my use requirements. But I want a robust and proper solution for this.
All of the above is easily achievable with the HelloSign API. In both cases the signing link is generated right when the user launches the document to sign so there's no risk for it to expire.
Non-embedded signing: with one API call, HelloSign will send an email to the user with the link to launch the document, an email reminder if the user takes long to sign, and an email with the link to download the final document once signed. The link the user gets can only expire if the document is manually marked as cancelled (or declined by the user).
Embedded signing: in 3 API calls you are able to create the document, generate the link for the document once the signer is ready to sign in your workflow, and download the completed document for you and the user. The API uses webhooks to inform you of events during the document lifecycle, and you have the ability to handle all notifications to the user as well as the timing for each API call.
Hope this helps! Let know if you'd like me to expand on the above.