Get a user by username
GET
/users/{username}Looks up a user by username and returns the public user shape (no private fields). Readable by anyone, including anonymous callers.
Request
Headers
| Name | Type | Scopes |
|---|---|---|
Authorizationoptional | string |
Path parameters
| Name | Type | Description |
|---|---|---|
usernamerequired | string | The user's username. |
Responses
| Status | Body | Description |
|---|---|---|
200 | SimpleUser | The user. |
404 | Error | The requested resource does not exist (or is not visible to the caller). |