We added a new API command available in the Password Reset / PostChallenge trigger. This API allows Tenant Developers to specify the url to redirect a user to upon the completion of a password reset on Universal Login.
Here is an example of using the command to redirect the user to a sample url after a successful password reset:
exports.onExecutePostChallenge = async (event, api) => {
api.transaction.setResultUrl('https://yourapp.yourdomain.com/profile');
};
You can learn more in our reference documentation.
Fetched April 23, 2026