Where is the object that references the @body payload stored?
If your user controller has a post function.
@Post() @HttpCode(HttpStatus.CREATED) create(@Body() user: IUserBase): Promise { return this.usersService.create(user); }
Where is the user variable stored? Is it stored in the request object of the nest.js server?