@auth0/nextjs-auth0 - v4.29.0
    Preparing search index...

    Interface ConnectedAccount

    A connected account as returned by the My Account API list endpoint.

    interface ConnectedAccount {
        accessType?: "offline";
        connection: string;
        createdAt?: string;
        expiresAt?: string;
        id: string;
        orgId?: string;
        scopes?: string[];
    }
    Index
    accessType?: "offline"

    The access type. Currently always returned as "offline" by the My Account API, but typed as optional since the field is not guaranteed on the response.

    connection: string

    The name of the connection associated with the connected account.

    createdAt?: string

    ISO date string of when the connected account was created.

    expiresAt?: string

    ISO date string of when the connected account expires (optional).

    id: string

    The unique identifier of the connected account (e.g., 'cac_...').

    orgId?: string

    The organization ID this connected account is scoped to. Only present for accounts bound to an organization.

    scopes?: string[]

    Array of scopes granted for this connected account.