User
'/users'
POST
async signUp(
@requestBody({
content: {
'application/json': {
schema: getModelSchemaRef(User, {
title: 'NewUser',
}),
},
},
})
newUser: User,
): Promise<User>GET
'/users/{id}'
GET
DEL
PATCH
'/users/login'
POST
'/whoAmI'
GET
'/users/logout'
POST
'/users/api-token'
GET
'/users/verify-email'
POST
'/users/verify'
GET
'/users/forgot-password'
POST
'/users/change-password'
POST
'/users/reset-password'
POST
'/users/creds-taken'
POST
Last updated