1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-04 11:07:59 +02:00

Added API:Diskspace doc

Abzie 2017-01-24 14:47:08 +00:00
parent a0ffa91fd6
commit d27615da55

29
API:Diskspace.md Normal file

@ -0,0 +1,29 @@
**Endpoint: "/diskspace"**
## GET ##
##### Summary #####
Gets information about Diskspace
##### Parameters ######
*None*
##### Returns JsonArray ######
```JSON
[
{
"path": "/",
"label": "/",
"freeSpace": 11059175424,
"totalSpace": 15614754816
},
{
"path": "/home",
"label": "/home",
"freeSpace": 88775757824,
"totalSpace": 98325770240
}
]
```