The Backend Session object
The Backend Session object is similar to the Session object as it is an abstraction over an HTTP session and models the period of information exchange between a user and the server. However, the Backend Session object is different as it is used in the Backend API and is not directly accessible from the Frontend API.
Properties
- Name
-  actor
- Type
- null | Record<string, unknown>
- Description
- The JWT actor for the session. Holds identifier for the user that is impersonating the current user. Read more about impersonation. 
 
- Name
-  lastActiveAt
- Type
- number
- Description
- The time the session was last active on the - Client.
 
- Name
-  latestActivity?
- Type
- SessionActivity
- Description
- An object that provides additional information about this session, focused around user activity data. 
 
Feedback
Last updated on