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

    Interface UserIdentitySchema

    interface UserIdentitySchema {
        connection?: string;
        user_id?: string;
        provider?: Management.UserIdentityProviderEnum;
        isSocial?: boolean;
        access_token?: string;
        access_token_secret?: string;
        refresh_token?: string;
        profileData?: UserProfileData;
    }
    Index

    Properties

    connection?: string

    Name of the connection containing this identity.

    user_id?: string

    Unique identifier of the user user for this identity.

    isSocial?: boolean

    Whether this identity is from a social provider (true) or not (false).

    access_token?: string

    IDP access token returned only if scope read:user_idp_tokens is defined.

    access_token_secret?: string

    IDP access token secret returned only if scope read:user_idp_tokens is defined.

    refresh_token?: string

    IDP refresh token returned only if scope read:user_idp_tokens is defined.

    profileData?: UserProfileData