GET api/diskpoolutilisation/detailsbydate

Gets summary of disk pool utilisation stats for a particular day

Resource Information
Requires authentication? Yes (HTTP authentication using user name and API key)
Response formats JSON
Example URL
  api/diskpoolutilisation/detailsbydate?organisationId=5&nodeGuid=7E08BD44-752F-4839-9F2A-840E5CB028A6&diskPoolName=ENV_DISK&startDate=2016-01-01 00:00  
Parameters
Name Description
organisationId
required
Id of the organisation
nodeGuid
optional
Unique identifier for the predatar agent
diskPoolName
optional
Disk Pool Name for which the data is to be retrieved. If not specified, then the default value All will be used.
startDate
optional
Start date in the format yyyy-MM-dd HH:mm. If not specified, then the default value will be used, which will be seven days before the current date
Example Result
[
  {
    "ServerName": "TSM-ABC-01",
    "STGPoolName": "LANDINGPOOL",
    "EstCapacityGBs": 1900.0,
    "UsedCapacity": 9.5,
    "PctMigr": 0.5,
    "PctUtilized": 6.2,
    "TimeRun": "2016-03-10T00:00:19"
  },
  {
    "ServerName": "TSM-CDE-01",
    "STGPoolName": "LANDINGPOOL",
    "EstCapacityGBs": 1900.0,
    "UsedCapacity": 9.5,
    "PctMigr": 0.5,
    "PctUtilized": 6.2,
    "TimeRun": "2016-03-10T00:15:20"
  },
  {
    "ServerName": "TSM-FGH-01",
    "STGPoolName": "LANDINGPOOL",
    "EstCapacityGBs": 1900.0,
    "UsedCapacity": 49.4,
    "PctMigr": 2.6,
    "PctUtilized": 6.2,
    "TimeRun": "2016-03-10T00:30:15"
  },
  {
    "ServerName": "TSM-IJK-01",
    "STGPoolName": "LANDINGPOOL",
    "EstCapacityGBs": 1900.0,
    "UsedCapacity": 49.4,
    "PctMigr": 2.6,
    "PctUtilized": 6.2,
    "TimeRun": "2016-03-10T00:45:11"
  }
 ]