URL Redirect cases not working
Monday, January 28, 2019 at 09:25amGuys,
I have a few redirects that I am trying that are not working and would love to know where I'm going wrong.
1. I've set the handover and complete event to force the redirect of a user when completing a package and it doesn't seem to work. See code below as this is what I am sending in my package config.
"settings": {
"ceremony": {
"hidePackageOwnerInPerson": true,
"optOutButton": false,
"layout": {
"brandingBar": {
"logo": {
"src": "http://www.mortgagelaw.com/images/logo-medium.png",
"link": ""
}
}
},
"events": {
"complete": {
"dialog": true,
"redirect": "https://www.google.com"
}
}
},
"handOver": {
"title": "You will now be redirected to GOOGLE!",
"href": "https://www.google.com",
"text": "Continue to exit!"
}
}
When I use this code, it does prompt the user when the package has been completed but when I click on the exit button, it doesn't redirect me anywhere. It actually just takes me back to the login page, inside of iframe. This basically gives me two footers for the same page.
2. I want to redirect the last user, our notary, to a different url upon completion of signing. Is there a way to do this?
Reply to: URL Redirect cases not working
Tuesday, January 29, 2019 at 06:21am"settings": { "ceremony": { "hidePackageOwnerInPerson": true, "optOutButton": false, "layout": { "brandingBar": { "logo": { "src": "http://www.mortgagelaw.com/images/logo-medium.png", "link": "" } } }, "events": { "complete": { "dialog": true, "redirect": "" } }, "handOver": { "title": "You will now be redirected to GOOGLE!", "href": "https://www.google.com", "text": "Continue to exit!" } } }For #2, there isn't a way to specify a different handover or just a handover for a particular signer, however, we do have our JavaScript event notifier, which it sounds like you might be able to use since you're embedding in an iFrame. Take a look at this: https://www.esignlive.com/blog/esignlive-event-notifier This would allow you to track signer completion in the embedded ceremony and redirect on your own.Reply to: URL Redirect cases not working
Tuesday, January 29, 2019 at 07:06amReply to: URL Redirect cases not working
Tuesday, January 29, 2019 at 08:14amReply to: URL Redirect cases not working
Tuesday, January 29, 2019 at 09:19amReply to: URL Redirect cases not working
Tuesday, January 29, 2019 at 09:28amReply to: URL Redirect cases not working
Wednesday, January 30, 2019 at 03:23amReply to: URL Redirect cases not working
Wednesday, January 30, 2019 at 09:52amReply to: URL Redirect cases not working
Monday, September 30, 2019 at 09:21am{ "roles": [ { "id": "1", "signers": [ { "firstName": "Victor", "lastName": "Gonzalez", "company": "VGO", "email": "[email protected]" } ] } ], "documents": [ { "content": "file content", "name": "test_V1.pdf", "signatureFields": [ { "page": -1, "x": 260, "y": 612, "signerIndex": 0, "patternName": null, "label": null } ] } ], "settings": { "ceremony": { "hidePackageOwnerInPerson": false, "optOutButton": false, "layout": { "brandingBar": { "logo": { "src": "", "link": "" } } }, "events": { "complete": { "dialog": true, "redirect": "" } }, "handOver": { "title": "You will be redirected to Google.", "href": "https://www.google.com", "text": "Continue to Exit" } } } }Reply to: URL Redirect cases not working
Tuesday, October 1, 2019 at 04:35amReply to: URL Redirect cases not working
Tuesday, October 1, 2019 at 05:51am