### Discussed in https://github.com/fastapi-users/fastapi-users/discussions/1256 <div type='discussions-op-text'> <sup>Originally posted by **hgalytoby** July 25, 2023</sup> I noticed that `user_manager.delete` can accept a `request` parameter. https://github.com/fastapi-users/fastapi-users/blob/master/fastapi_users/manager.py#L469 However, when I looked at the delete method in the router, I observed that the request parameter is not being passed when using `user_manager.delete`. https://github.com/fastapi-users/fastapi-users/blob/master/fastapi_users/router/users.py#L223 I wonder why the `request` parameter is not being passed to `user_manager.delete` in the delete method of the router?</div>