Custom MFA Screens Through Library

Hi @Evan.Kellogg,

I figured out a way to do this easily!

const parseJwt = (token) => {
   try {
	  return JSON.parse(atob(token.split('.')[1]));
    } catch (e) {
	  return null;
   }
};

const decodedToken = parseJwt("{{ requestToken }}");

decodedToken.clientId

You can use the clientId to set a different logo for example your applications…

Check my full answer here:

I hope it is of some use for you!