How do I map the incoming SAML Attribute to the Name field for a user?

Ready to post? :mag: First, try searching for your answer.

I have the following in Mappings for the SAML App.
Screenshot 2024-06-13 125435

All i want is for there to be either a name or email for the column on the left on the Users page.

Hi Jeff,

Thank you for posting your message!

Wanted to provide a reply to this post, I believe the following mapping should work for your case :

{
  "given_name": "FirstName",
  "family_name": "LastName",
  "email": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier"
}

This simple setup should work just fine - after testing on my end, there were no errors and the users were no longer showing as " empty ".

Hope this helped!
Gerald