You can now capture and include a Zipy session URL in any ticket raised by your end users from inside your application where Zipy is integrated. It is as simple as calling a Javascript function getCurrentSessionURL.
This function can be called from any page of the application where Zipy is active and will return the ongoing Zipy session URL of that user. On the form submission, when your users create tickets from inside your application, the same Zipy link can be sent to your support desk/chat client. This will enable your support team to access the Zipy sessions of the users, in the corresponding issues reported by them.
function() { const sessionUrl = zipy.getCurrentSessionURL(); /* You can send this URL in an email/chat that is sent on form submission. */ };
Example Usage:
const handleLogin = (data) => { let sessionURL = (window).zipy.getCurrentSessionURL(); console.log("sessionURL",sessionURL) setLoading(true); };
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article