This server event occurs when any user logs in to a Fluid Topics portal.
This event contains the following fields:
Field | Description |
---|---|
outcome |
The HTTP status code returned after attempting to authenticate. |
realmName |
The name of the realm in which the user logged in (Root user for default static authentication). |
realmType |
The type of realm (static , LDAP , OIDC , SAML 2.0 , internal ). |
rememberMe |
true if the user chooses to be remembered, false otherwise. |
trigger |
The type of login. Can be manual (indicates an interface login), api (indicates an API login), or sso (indicates an SSO login). |
- The most commonly returned HTTP status codes are
200
when authenticating successfully and401
if invalid credentials are detected. - Not all HTTP status codes are available for SSO realms. For example, the Identity Provider does not share information about failed logins.
A table for the most common fields is in Analytics events.
Example:
[
{
"outcome": 200,
"realmName": "internal",
"realmType": "internal",
"rememberMe": true,
"trigger": "manual"
}
]