Skip to main content

Event Properties

FieldValue
event"embedded.authenticated"
confidentialboolean
payloadobject
FieldTypeDescription
tokenTypestring | undefinedType of authentication token
scopestring | undefinedOAuth scope granted
expiresInnumber | null | undefinedAccess token expiration time in seconds
refreshExpiresInnumber | null | undefinedRefresh token expiration time in seconds
hasRefreshTokenbooleanWhether a refresh token was provided
hasIdTokenbooleanWhether an ID token was provided
hasProfilebooleanWhether user profile data was included

Example

{
  "event": "embedded.authenticated",
  "confidential": false,
  "payload": {
    "tokenType": "Bearer",
    "scope": "openid profile",
    "expiresIn": 3600,
    "refreshExpiresIn": 7200,
    "hasRefreshToken": true,
    "hasIdToken": true,
    "hasProfile": true
  }
}