Get a user by ID
GET
/user/{id}Looks up a user by numeric ID 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 |
|---|---|---|
idrequired | integer | The user's numeric ID. |
Responses
| Status | Body | Description |
|---|---|---|
200 | SimpleUser | The user. |
400 | Error | The request was malformed. |
404 | Error | The requested resource does not exist (or is not visible to the caller). |