GET api/datadeduplication/summary

Gets summary of data deduplication stats based on the date range specified

Resource Information
Requires authentication? Yes (HTTP authentication using user name and API key)
Response formats JSON
Example URL
  api/datadeduplication/summary?organisationId=5&startDate=2016-01-01 00:00  
Parameters
Name Description
organisationId
required
Id of the organisation
nodeGuid
optional
Unique identifier for the predatar agent. If not specified, then the data for all the TSM servers will be retrieved.
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
endDate
optional
End date in the format yyyy-MM-dd HH:mm. If not specified, then the default value will be used, which will be the current date
stgPoolName
optional
Storage pool name for which the data is to be retrieved. If not specified, then the data for all storage pools will be retrieved.
viewType
optional
Type of report for which the data is to be retrieved. It can be 'Ratio' or 'Occupancy'. If not sepcified, then the default value of 'Ratio' will be used.
Example Result
[
  {
    "STGPoolNames": null,
    "DateTimeCreated": "2016-03-09T00:00:00",
    "LogicalMb": 14340545.0,
    "ReportingMb": 125009943.0,
    "Ratio": 8.72
  },
  {
    "STGPoolNames": null,
    "DateTimeCreated": "2016-03-08T00:00:00",
    "LogicalMb": 14390198.0,
    "ReportingMb": 124587734.0,
    "Ratio": 8.66
  },
  {
    "STGPoolNames": null,
    "DateTimeCreated": "2016-03-07T00:00:00",
    "LogicalMb": 14292019.0,
    "ReportingMb": 123745225.0,
    "Ratio": 8.66
  },
  {
    "STGPoolNames": null,
    "DateTimeCreated": "2016-03-06T00:00:00",
    "LogicalMb": 14294413.0,
    "ReportingMb": 123049352.0,
    "Ratio": 8.61
  }
]