Param Functions

Functions that return details of the user running the query.

Current User

Returns the display name of the current logged in user, falling back to their subject id, then their full name, if they do not have one.

currentUser()

Example

currentUser()
> 'jbloggs'

Current User Display Name

Returns the display name of the current logged in user, or null if they do not have one.

currentUserDisplayName()

Example

currentUserDisplayName()
> 'jbloggs'

Current User Full Name

Returns the full name of the current logged in user, or null if they do not have one.

currentUserFullName()

Example

currentUserFullName()
> 'Joe Bloggs'

Current User Subject Id

Returns the subject id of the current logged in user, i.e. the unique identifier for the user as supplied by the identity provider, or null if they do not have one.

currentUserSubjectId()

Example

currentUserSubjectId()
> 'a1b2c3d4-1234-5678-90ab-cdef12345678'

Current User Uuid

Returns the UUID of the current logged in user, i.e. the identifier that Stroom itself holds for the user. Unlike the other values on this page, every user has one.

currentUserUuid()

Example

currentUserUuid()
> '9f8e7d6c-4321-8765-ba09-fedc87654321'
Last modified August 14, 2026: fix build (307b3f0)