Do you want to forward a user to a landing page after the party has signed?
You can set the URL of the landing page in the property ContinueUrl
, and by using ContinueAuto
you can choose if the forwarding should be automatic after the party has signed. Either set these parameters via the API or through the Javascript console in the browser.
If ContinueAuto is enabled the user is immediately forwarded to the landing page after the signature is completed.
If ContinueAuto is disabled the user stays on the page after the signature is completed, and is presented with a "next"-button. They will also have the possibility to view and download their signed document.
Using the API: Read more in the API documentation under CaseModel.
Using the web office: Do you need to set this up without using the API? In that case you can use the javascript Console, follow the instructions below:
Configure ContinueUrl using the javascript console
- Go to the case or template
- Open the console (COMMAND + SHIFT + J or CTRL + ALT + I)
- Enter
caseModel.ContinueUrl()
and press enter to see what URL is currently set. - Add the URL you want to set as a string inside the parentheses, eg.
caseModel.ContinueUrl('https://...')
and press enter to save it. - Enter
caseModel.ContinueAuto()
to see if automatic forwarding is enabled (true) or disabled (false and add true or false within the parentheses to set the property.
Comments
0 comments
Please sign in to leave a comment.