Retrieve a specific user by their ID
curl -X GET https://api.library.com/users/1 \ -u username:password
{ "200": {}, "401": {}, "404": {}, "id": 123, "firstname": "<string>", "lastname": "<string>", "email": "<string>", "borrowedBooks": [ { "id": 123, "user": {}, "book": {}, "loanDate": "<string>", "returnDate": "<string>", "returned": true } ], "googleId": "<string>", "displayPicture": "<string>" }
Show RentalDto properties