GET /users
- It may be missing query semantics: GET /users?page=1&limit=50&status=active
- Might also need GET /users/:id for a single user
POST /users/new
- Redundant “new” in the path. In REST create a resource by method post like POST /users with the new user data in the body
POST /users/:id/update