User Api Fp ( configuration ? ) : { authenticateUserByName ( authenticateUserByName : AuthenticateUserByName , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < AuthenticationResult > ) > ; authenticateWithQuickConnect ( quickConnectDto : QuickConnectDto , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < AuthenticationResult > ) > ; createUserByName ( createUserByName : CreateUserByName , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto > ) > ; deleteUser ( userId : string , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > ; forgotPassword ( forgotPasswordDto : ForgotPasswordDto , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < ForgotPasswordResult > ) > ; forgotPasswordPin ( forgotPasswordPinDto : ForgotPasswordPinDto , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < PinRedeemResult > ) > ; getCurrentUser ( options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto > ) > ; getPublicUsers ( options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto [] > ) > ; getUserById ( userId : string , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto > ) > ; getUsers ( isHidden ?: boolean , isDisabled ?: boolean , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto [] > ) > ; updateUser ( userDto : UserDto , userId ?: string , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > ; updateUserConfiguration ( userConfiguration : UserConfiguration , userId ?: string , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > ; updateUserPassword ( updateUserPassword : UpdateUserPassword , userId ?: string , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > ; updateUserPolicy ( userId : string , userPolicy : UserPolicy , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > ; } Returns { authenticateUserByName ( authenticateUserByName : AuthenticateUserByName , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < AuthenticationResult > ) > ; authenticateWithQuickConnect ( quickConnectDto : QuickConnectDto , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < AuthenticationResult > ) > ; createUserByName ( createUserByName : CreateUserByName , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto > ) > ; deleteUser ( userId : string , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > ; forgotPassword ( forgotPasswordDto : ForgotPasswordDto , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < ForgotPasswordResult > ) > ; forgotPasswordPin ( forgotPasswordPinDto : ForgotPasswordPinDto , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < PinRedeemResult > ) > ; getCurrentUser ( options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto > ) > ; getPublicUsers ( options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto [] > ) > ; getUserById ( userId : string , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto > ) > ; getUsers ( isHidden ?: boolean , isDisabled ?: boolean , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto [] > ) > ; updateUser ( userDto : UserDto , userId ?: string , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > ; updateUserConfiguration ( userConfiguration : UserConfiguration , userId ?: string , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > ; updateUserPassword ( updateUserPassword : UpdateUserPassword , userId ?: string , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > ; updateUserPolicy ( userId : string , userPolicy : UserPolicy , options ?: RawAxiosRequestConfig ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > ; } authenticate User By Name : functionauthenticate User By Name ( authenticateUserByName , options ? ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < AuthenticationResult > ) > Returns Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < AuthenticationResult > ) > authenticate With Quick Connect : functionauthenticate With Quick Connect ( quickConnectDto , options ? ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < AuthenticationResult > ) > Returns Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < AuthenticationResult > ) > create User By Name : functioncreate User By Name ( createUserByName , options ? ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto > ) > Returns Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto > ) > delete User : functiondelete User ( userId , options ? ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > Parameters userId : string Optional
options : RawAxiosRequestConfig Returns Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > forgot Password : functionforgot Password ( forgotPasswordDto , options ? ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < ForgotPasswordResult > ) > Returns Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < ForgotPasswordResult > ) > forgot Password Pin : functionforgot Password Pin ( forgotPasswordPinDto , options ? ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < PinRedeemResult > ) > Returns Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < PinRedeemResult > ) > get Current User : functionget Current User ( options ? ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto > ) > Parameters Optional
options : RawAxiosRequestConfig Returns Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto > ) > get Public Users : functionget Public Users ( options ? ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto [] > ) > Parameters Optional
options : RawAxiosRequestConfig Returns Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto [] > ) > get User By Id : functionget User By Id ( userId , options ? ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto > ) > Parameters userId : string Optional
options : RawAxiosRequestConfig Returns Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto > ) > get Users : functionget Users ( isHidden ? , isDisabled ? , options ? ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto [] > ) > Parameters Optional
isHidden : boolean Optional
isDisabled : boolean Optional
options : RawAxiosRequestConfig Returns Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < UserDto [] > ) > update User : functionupdate User ( userDto , userId ? , options ? ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > Parameters userDto : UserDto Optional
userId : string Optional
options : RawAxiosRequestConfig Returns Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > update User Configuration : functionupdate User Configuration ( userConfiguration , userId ? , options ? ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > Parameters userConfiguration : UserConfiguration Optional
userId : string Optional
options : RawAxiosRequestConfig Returns Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > update User Password : functionupdate User Password ( updateUserPassword , userId ? , options ? ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > Parameters updateUserPassword : UpdateUserPassword Optional
userId : string Optional
options : RawAxiosRequestConfig Returns Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > update User Policy : functionupdate User Policy ( userId , userPolicy , options ? ) : Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) > Parameters userId : string userPolicy : UserPolicy Optional
options : RawAxiosRequestConfig Returns Promise < ( ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < void > ) >
UserApi - functional programming interface
Export