sense-js-sdk
    Preparing search index...

    Interface AuthenticationResponse

    Response object returned after successful authentication

    interface AuthenticationResponse {
        ab_cohort?: string;
        access_token: string;
        account_id: number;
        authorized: boolean;
        bridge_server: string;
        date_created: string;
        monitors: Monitor[];
        refresh_token: string;
        settings: Settings;
        totp_enabled: boolean;
        user_id: number;
    }
    Index

    Properties

    ab_cohort?: string

    A/B testing cohort assignment

    access_token: string

    JWT token for accessing protected resources

    account_id: number

    Unique identifier for the account

    authorized: boolean

    Whether the authentication was successful

    bridge_server: string

    URL of the bridge server

    date_created: string

    ISO 8601 timestamp when the account was created

    monitors: Monitor[]

    List of monitors associated with the account

    refresh_token: string

    JWT token for obtaining new access tokens

    settings: Settings

    User's application settings

    totp_enabled: boolean

    Whether two-factor authentication is enabled

    user_id: number

    Unique identifier for the user