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
- 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.