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

    Interface DeleteUserIdentityResponseContentItem

    interface DeleteUserIdentityResponseContentItem {
        connection: string;
        user_id: string;
        provider: string;
        isSocial?: boolean;
        access_token?: string;
        access_token_secret?: string;
        refresh_token?: string;
        profileData?: UserProfileData;
    }
    Index

    Properties

    connection: string

    The name of the connection for the identity.

    user_id: string

    The unique identifier for the user for the identity.

    provider: string

    The type of identity provider.

    isSocial?: boolean

    true if the identity provider is a social provider, falses otherwise

    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