summaryrefslogtreecommitdiff
path: root/doc/api/license.md
blob: dc95f9fcebfc17b71d9045b8f1ae76d0d8089746 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# License

## Retrieve information about the current license

In order to retrieve the license information, you need to authenticate yourself
as an admin.

```
GET /license
```

```json
{
  "starts_at": "2015-10-24",
  "expires_at": "2016-10-24",
  "licensee": {
    "Name": "John Doe",
    "Company": "Doe, Inc.",
    "Email": "john@doe.com"
  },
  "user_limit": 100,
  "active_users": 60
}
```