Skip to main content
All CollectionsChatGPT EnterpriseChatGPT Enterprise SSO
I'm not sure SSO is correctly set up on ChatGPT Enterprise
I'm not sure SSO is correctly set up on ChatGPT Enterprise
Updated over 8 months ago

Make sure while setting up SSO, you're passing the correct attributes:

  • email: Required

  • given_name: Optional

  • family_name: Optional

Here's the exact schema mapping in JSON:

{
"email": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier",
"given_name": [
"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname",
"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name"
],
"family_name": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname"
}

Did this answer your question?