Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
titleReturn Attributes

aid: The authentication ID key tracked by the database.

uid: The user's Drupal ID.

authname: The user's unique identifier from the external system.

module: The module responsible for authenticating the user. This is usually the name of the custom SSO implementation. For SAML implementations the module name is "simplesamlphp_auth."


Code Block
linenumberstrue
{ 
 
   "self":"https://your-domain.com/authmap?authname=external_user_500",
   "first":"https://your-domain.com/authmap?authname=external_user_500\u0026page=0",
   "last":"https://your-domain.com/authmap?authname=external_user_500\u0026page=0",
   "list":[ 
      { 
         "aid":"2",
         "uid":"229",
         "authname":"external_user_500",
         "module":"client_sso"
      }
   ]
}

...