Vidarebefordra till en annan webbplats efter underskrift

Uppdaterad

Vill du vidarebefordra en användare till en annan sida efter att parten skrivit under?

Du kan ange denna URL i egenskapen ContinueUrl, och med ContinueAuto ange ifall det ska ske automatiskt efter att parten skrivit under. Se vidare i API-dokumentationen under CaseModel.

Behöver du sätta egenskapen på en mall utan att använda dig av API:et? Då kan du använda dig av javascript-konsolen.

Configure ContinueUrl using the javascript console

  1. Go to the case or template
  2. Open the console (COMMAND + SHIFT + J or CTRL + ALT + I)
  3. Enter caseModel.ContinueUrl() and press enter to see what URL is currently set.
  4. Add the URL you want to set as a string inside the parentheses, eg. caseModel.ContinueUrl('https://...') and press enter to save it.
  5. 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.
warning Warning.