Member Junction
    Preparing search index...

    Result of minting a client token.

    interface LiveKitClientTokenResult {
        ErrorMessage?: string;
        Identity: string;
        RoomName: string;
        ServerUrl: string;
        Success: boolean;
        Token: string;
    }
    Index

    Properties

    ErrorMessage?: string

    Error detail when Success is false.

    Identity: string

    The participant identity embedded in the token.

    RoomName: string

    The room the token authorizes.

    ServerUrl: string

    The LiveKit server URL to connect to.

    Success: boolean

    Whether the operation succeeded.

    Token: string

    The signed access token to pass to the room UI.