mysa-js-sdk
    Preparing search index...

    Interface MysaSession

    Interface representing an authenticated Mysa user session.

    Contains the authentication tokens and user information required to make authorized API calls to the Mysa service. These tokens are typically obtained through the login process and used for subsequent API requests.

    interface MysaSession {
        accessToken: string;
        idToken: string;
        refreshToken: string;
        username: string;
    }
    Index

    Properties

    accessToken: string

    JWT access token used for authorizing API requests

    idToken: string

    JWT identity token containing user identity information

    refreshToken: string

    JWT refresh token used to obtain new access tokens when they expire

    username: string

    The username/email address of the authenticated user