1GET /users/<user_id> - return the information for <user_id>
2POST /users/<user_id> - modify/update the information for <user_id> by providing the data
3PUT - I will omit this for now as it is similar enough to `POST` at this level of depth
4DELETE /users/<user_id> - delete user with ID <user_id>
5