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

    Interface UserInfoResponse

    Response interface for the UserInfo endpoint

    interface UserInfoResponse {
        sub: string;
        name: string;
        given_name?: string;
        family_name?: string;
        middle_name?: string;
        nickname: string;
        preferred_username?: string;
        profile?: string;
        picture?: string;
        website?: string;
        email: string;
        email_verified: boolean;
        gender?: string;
        birthdate?: string;
        zoneinfo?: string;
        locale?: string;
        phone_number?: string;
        phone_number_verified?: string;
        address?: { country?: string };
        updated_at: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    sub: string
    name: string
    given_name?: string
    family_name?: string
    middle_name?: string
    nickname: string
    preferred_username?: string
    profile?: string
    picture?: string
    website?: string
    email: string
    email_verified: boolean
    gender?: string
    birthdate?: string
    zoneinfo?: string
    locale?: string
    phone_number?: string
    phone_number_verified?: string
    address?: { country?: string }
    updated_at: string