TESSA Web API
    Preparing search index...

    Interface IUserInfoService

    Service for retrieving user information based on user identifier(s).

    interface IUserInfoService {
        getUsersInfo(
            ids: null | string[],
            type?: null | string,
        ): Promise<IUserInfo[]>;
    }

    Implemented by

    Index

    Methods

    Methods

    • Retrieves user information for users with specified identifiers.

      Parameters

      • ids: null | string[]

        A collection of the user identifiers.

      • Optionaltype: null | string

        Optional user info handler type. If null, the default handler is used.

      Returns Promise<IUserInfo[]>

      A collection of user information for users that are found.