Access levels
GET /api/v1/access_levels
Get a list of all access levels.
Get a list of all access levels and associated values.
- id
-
The unique id of this level.
- name
-
The english name for this level.
- maxsize
-
The maximum file size allowed at this level, in megabytes.
- price
-
The monthly price of the level, in US dollars.
- bandwidth
-
The monthly bandwidth of the level, in GB.
- storage
-
The total storage of the level, in GB.
Examples¶ ↑
GET /access_levels.json
{ "1":{ "id":1, "name":"Free", "maxsize":100, "price":0, "bandwidth":30, "storage":2 }, "2":{ "id":2, "name":"Silver", "maxsize":4096, "price":8, "bandwidth":100, "storage":60 }, "3":{ "id":3, "name":"Gold", "maxsize":4096, "price":15, "bandwidth":250, "storage":100 }, "4":{ "id":4, "name":"Platinum", "maxsize":4096, "price":59, "bandwidth":1000, "storage":250 } }