Auth0 Node.js SDK - v5.1.0
    Preparing search index...

    Interface ConnectedAccount

    interface ConnectedAccount {
        id: string;
        connection: string;
        connection_id: string;
        strategy: string;
        access_type: "offline";
        scopes?: string[];
        created_at: string;
        expires_at?: string;
    }
    Index

    Properties

    id: string

    The unique identifier for the connected account.

    connection: string

    The name of the connection associated with the account.

    connection_id: string

    The unique identifier of the connection associated with the account.

    strategy: string

    The authentication strategy used by the connection.

    access_type: "offline"
    scopes?: string[]

    The scopes granted for this connected account.

    created_at: string

    ISO 8601 timestamp when the connected account was created.

    expires_at?: string

    ISO 8601 timestamp when the connected account expires.