Skip to Content
Clerk logo

Clerk Docs

Ctrl + K
Go to clerk.com

Session Methods

These are all methods on the Clerk class that help you manage the active session and/or organization.

setSession() (deprecated)

function setSession( session: Session | string | null, beforeEmit?: BeforeEmitCallback ): Promise<void>;

Deprecated in favor of setActive().

Set the current session on this client to the provided session. The provided session can be either a complete Session object or simply its unique identifier.

Passing null as the session will result in the current session to be removed from the client.

If an active session already exists, it will be replaced with the new one. The change happens in three steps:

  1. The current Session object is set to undefined, which causes the control components to stop rendering their children as though Clerk is still initializing.
  2. The beforeEmit callback is executed. If a Promise is returned, Clerk waits for the Promise to resolve.
  3. The current Session is set to the passed session. This causes the control components to render their children again.

Properties

NameTypeDescription
sessionSession | string | nullA Session object or Session ID string to be set as the current session, or null to simply remove the active session, without setting a new one.
beforeEmit?(session: Session | null) => Promise<any>Callback that will trigger when the current session is set to undefined, before finally being set to the passed session. Usually used for navigation.

Returns

TypeDescription
Promise<void>The Promise will resolve after the passed session is set.

setActive()

function setActive({ session, organization, beforeEmit, }: SetActiveParams): Promise<void>;

A method used to set the active session and/or organization.

SetActiveParams

NameTypeDescription
sessionSession | string | nullThe session resource or session ID (string version) to be set as active. If null, the current session is deleted.
organizationOrganization | string | nullThe organization resource or organization ID (string version) to be set as active in the current session. If null, the currently active organization is removed as active.
beforeEmit?(session?: Session | null) => void | Promise<any>Callback run just before the active session and/or organization is set to the passed object. Can be used to hook up for pre-navigation actions.

Returns

TypeDescription
Promise<void>The Promise will resolve after the passed session or organization is set.

Last updated on November 7, 2023

What did you think of this content?

Clerk © 2023