Skip to content
Blume is now publicly available.
Blume
Esc
navigateopen⌘Jpreview

Get user by user name.

Get user detail based on username.

GET/user/{username}
Path parameters
usernamestringrequired
The name that needs to be fetched. Use user1 for testing
Responses
200successful operation
idinteger<int64>
usernamestring
firstNamestring
lastNamestring
emailstring
passwordstring
phonestring
userStatusinteger<int32>
User Status
400Invalid username supplied
404User not found
defaultUnexpected error
Request
curl -X GET "/api/v3/user/string"
Response
{
  "id": 10,
  "username": "theUser",
  "firstName": "John",
  "lastName": "James",
  "email": "john@email.com",
  "password": "12345",
  "phone": "12345",
  "userStatus": 1
}