Users¶
Using this part of the API you can retrieve information about users.
Objects¶
User¶
The user object describes a user.
Example¶
{
  "id": "usfgw",
  "username": "dmajda",
  "email": "david.majda@energomonitor.cz"
}
Properties¶
| Name | Type | Description | 
|---|---|---|
| 
 | 
 | User ID. It uniquely identifies the user within the system. | 
| 
 | 
 | Username. | 
| 
 | 
 | Email. | 
Resources¶
GET /users/{user_id}¶
Retrieves a single user. Returns a user object.
Example response¶
{
  "id": "usfgw",
  "username": "dmajda",
  "email": "david.majda@energomonitor.cz"
}