xtb-api-unofficial - v0.1.0
    Preparing search index...

    Interface CASLoginTwoFactorRequired

    CAS login requiring two-factor authentication.

    User must provide OTP code using one of the available methods.

    interface CASLoginTwoFactorRequired {
        expiresAt: number;
        methods: ("TOTP" | "SMS" | "EMAIL")[];
        sessionId: string;
        type: "requires_2fa";
    }
    Index

    Properties

    expiresAt: number

    Session expiration timestamp

    methods: ("TOTP" | "SMS" | "EMAIL")[]

    Available 2FA methods (TOTP, SMS, EMAIL)

    sessionId: string

    Session ID for 2FA submission

    type: "requires_2fa"