encompassconnect
Version:
An Unofficial, (mostly) typed Node SDK that wraps around Ellie Mae's Encompass RESTful API.
16 lines (15 loc) • 567 B
TypeScript
import EncompassService from './service';
import { ListOfUsersOptions } from '../types';
declare class UserService extends EncompassService {
/**
* Gets a list of user profiles from the organization. Takes an optional
* argument to apply a filter.
*/
getList(options?: ListOfUsersOptions): Promise<any[]>;
/**
* Returns a user profile. If no user profile is provided, will return
* the profile matching the currently stored token.
*/
getProfile(losId?: string): Promise<any>;
}
export default UserService;