Do you want to forward a user to another page after the party has signed?
You can set this URL in the property ContinueUrl
, and using ContinueAuto
you can choose if the forwarding will be automatic after the party has signed. See more in the API documentation under CaseModel.
Do you need to set this up without using the API? In that case you can use the javascript Console:
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.