---
displayed_sidebar: servicesSidebar
---
import ParameterTypes from "@site/src/components/ParameterTypes"
# UserService
Provides layer to manipulate users.
## Constructors
### constructor
`**new UserService**(«destructured»)`
#### Parameters
## Properties
`",
"description": "",
"optional": true,
"defaultValue": "",
"expandable": false,
"children": []
},
{
"name": "__container__",
"type": "`any`",
"description": "",
"optional": false,
"defaultValue": "",
"expandable": false,
"children": []
},
{
"name": "__moduleDeclaration__",
"type": "`Record`",
"description": "",
"optional": true,
"defaultValue": "",
"expandable": false,
"children": []
},
{
"name": "analyticsConfigService_",
"type": "[AnalyticsConfigService](AnalyticsConfigService.mdx)",
"description": "",
"optional": false,
"defaultValue": "",
"expandable": false,
"children": []
},
{
"name": "eventBus_",
"type": "[EventBusService](EventBusService.mdx)",
"description": "",
"optional": false,
"defaultValue": "",
"expandable": false,
"children": []
},
{
"name": "featureFlagRouter_",
"type": "[FlagRouter](FlagRouter.mdx)",
"description": "",
"optional": false,
"defaultValue": "",
"expandable": false,
"children": []
},
{
"name": "manager_",
"type": "EntityManager",
"description": "",
"optional": false,
"defaultValue": "",
"expandable": false,
"children": []
},
{
"name": "transactionManager_",
"type": "`undefined` \\| EntityManager",
"description": "",
"optional": false,
"defaultValue": "",
"expandable": false,
"children": []
},
{
"name": "userRepository_",
"type": "Repository<[User](User.mdx)>",
"description": "",
"optional": false,
"defaultValue": "",
"expandable": false,
"children": []
},
{
"name": "Events",
"type": "`object`",
"description": "",
"optional": false,
"defaultValue": "",
"expandable": false,
"children": []
},
{
"name": "Events.CREATED",
"type": "`string`",
"description": "",
"optional": false,
"defaultValue": "\"user.created\"",
"expandable": false,
"children": []
},
{
"name": "Events.DELETED",
"type": "`string`",
"description": "",
"optional": false,
"defaultValue": "\"user.deleted\"",
"expandable": false,
"children": []
},
{
"name": "Events.PASSWORD_RESET",
"type": "`string`",
"description": "",
"optional": false,
"defaultValue": "\"user.password_reset\"",
"expandable": false,
"children": []
},
{
"name": "Events.UPDATED",
"type": "`string`",
"description": "",
"optional": false,
"defaultValue": "\"user.updated\"",
"expandable": false,
"children": []
}
]} />
## Accessors
### activeManager\_
`Protected get**activeManager_**(): EntityManager`
#### Returns
EntityManager
## Methods
### atomicPhase\_
`Protected **atomicPhase_**(work, isolationOrErrorHandler?, maybeErrorHandlerOrDontFail?): Promise<TResult>`
Wraps some work within a transactional block. If the service already has
a transaction manager attached this will be reused, otherwise a new
transaction manager is created.
#### Parameters
Promise<TResult>",
"description": "the transactional work to be done",
"optional": false,
"defaultValue": "",
"expandable": false,
"children": []
},
{
"name": "isolationOrErrorHandler",
"type": "`IsolationLevel` \\| (`error`: `TError`) => Promise<void \\| TResult>",
"description": "the isolation level to be used for the work.",
"optional": true,
"defaultValue": "",
"expandable": false,
"children": []
},
{
"name": "maybeErrorHandlerOrDontFail",
"type": "(`error`: `TError`) => Promise<void \\| TResult>",
"description": "Potential error handler",
"optional": true,
"defaultValue": "",
"expandable": false,
"children": []
}
]} />
#### Returns
Promise<TResult>
___
### create
`**create**(user, password): Promise<[User](User.mdx)>`
Creates a user with username being validated.
Fails if email is not a valid format.
#### Parameters
#### Returns
Promise<[User](User.mdx)>
___
### delete
`**delete**(userId): Promise<void>`
Deletes a user from a given user id.
#### Parameters
#### Returns
Promise<void>
___
### generateResetPasswordToken
`**generateResetPasswordToken**(userId): Promise<string>`
Generate a JSON Web token, that will be sent to a user, that wishes to
reset password.
The token will be signed with the users current password hash as a secret
a long side a payload with userId and the expiry time for the token, which
is always 15 minutes.
#### Parameters
#### Returns
Promise<string>
___
### hashPassword\_
`**hashPassword_**(password): Promise<string>`
Hashes a password
#### Parameters
#### Returns
Promise<string>
___
### list
`**list**(selector, config?): Promise<[User](User.mdx)[]>`
#### Parameters
#### Returns
Promise<[User](User.mdx)[]>
___
### retrieve
`**retrieve**(userId, config?): Promise<[User](User.mdx)>`
Gets a user by id.
Throws in case of DB Error and if user was not found.
#### Parameters
#### Returns
Promise<[User](User.mdx)>
___
### retrieveByApiToken
`**retrieveByApiToken**(apiToken, relations?): Promise<[User](User.mdx)>`
Gets a user by api token.
Throws in case of DB Error and if user was not found.
#### Parameters
#### Returns
Promise<[User](User.mdx)>
___
### retrieveByEmail
`**retrieveByEmail**(email, config?): Promise<[User](User.mdx)>`
Gets a user by email.
Throws in case of DB Error and if user was not found.
#### Parameters
#### Returns
Promise<[User](User.mdx)>
___
### setPassword\_
`**setPassword_**(userId, password): Promise<[User](User.mdx)>`
Sets a password for a user
Fails if no user exists with userId and if the hashing of the new
password does not work.
#### Parameters
#### Returns
Promise<[User](User.mdx)>
___
### shouldRetryTransaction\_
`Protected **shouldRetryTransaction_**(err): boolean`
#### Parameters
` \\| ``{ code: string }``",
"description": "",
"optional": false,
"defaultValue": "",
"expandable": false,
"children": []
}
]} />
#### Returns
`boolean`
___
### update
`**update**(userId, update): Promise<[User](User.mdx)>`
Updates a user.
#### Parameters
#### Returns
Promise<[User](User.mdx)>
___
### withTransaction
`**withTransaction**(transactionManager?): [UserService](UserService.mdx)`
#### Parameters
#### Returns
[UserService](UserService.mdx)