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

id

string

User ID. It uniquely identifies the user within the system.

username

string

Username.

email

string

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"
}