Skip to main content
Skip to main content

retrieve - Auth Module Reference

This documentation provides a reference to the retrieve method. This belongs to the Auth Module.

This method retrieves an auth user by its ID.

Example

const authUser = await authModuleService.retrieve("authusr_1")

Parameters

idstringRequired
The ID of the auth user.
The configurations determining how the auth user is retrieved. Its properties, such as select or relations, accept the attributes or relations associated with a auth user.
sharedContextContext
A context used to share resources, such as transaction manager, between the application and the module.

Returns

PromisePromise<AuthUserDTO>Required
The retrieved auth user.
Was this section helpful?