Okta SAML integration and user profile sync in Auth0

I have successfully integrated Auth0 as the SP and Okta as IdP. I enabled profile sync option, but Okta users’ first and last names are synced into Auth0. Is there another step in configuration? Thanks in advance.

Hello @junying

Thank you for reaching out to us!
On Auth0’s side, the integration will need to map firstName from the IdP to given_name and lastName to family_name. I believe this was the detail that you might have missed within the integration. I believe that the schema for the mappings should be:

  "given_name": "http://schemas.com/firstName",
  "family_name": "http://schemas.com/lastName",

You can find more information on integration Okta with Auth0 on the following documentation.

Have a great one!
Gerald