On Guardian hosted page , how can i print {{userData}} object

Hi,

I am on guardian hosted page and I can see we get

{{ userData.tenant }}

and I can also get {{ userData.email }} . But I want to see all values that this {{ userData}} has. I tried {{ userData | json }} but it did not work.

I am sending some additional metadata from rule “Multifactor-Guardian-Do-Not-Rename”

user.email_mfa = ‘test’;
callback(null, user, context);

Hey there @npatel!

Here’s the list of liquid syntax variables you can use in Guardian Hosted Page:

https://auth0.com/docs/multifactor-authentication/administrator/customizing-widget#html-liquid-syntax

When it comes to userData object there are:

  • userData.email
  • userData.friendlyUserId
  • userData.tenant
  • userData.tenantFriendlyName

Let me know if that helps!

Is there a way to send other user metadata?

Unfortunately when it comes rendering userData info on your Guardian Hosted Page only the parameters I mentioned above are available to assist in rendering your page.

ok, I was hoping to do something with their country and language. but never mind.

1 Like

Sure. Let me know if you have any other questions!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.