GET api/objectsstored/summary

Gets summary of objects stored 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/objectsstored/summary?organisationId=5&nodeGroupId=3&split=true&viewType=Bkup  
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.
nodeGroupId
optional
Id of the node group
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
split
optional
Can be true or false. If true then stats of individual TSM servers will be retrieved, otherwise results will be combined for all the TSM servers. The default value is false.
viewType
optional
Type of data to be retrieved. The value can be All, Arch (for archive), Bkup (for backup) or SpMg (for space managed). If not specified, the default value of All will be used.
Example Result
[
  {
    "DateCreated": "2016-03-10T00:00:00",
    "PrimaryObjects": 1779052,
    "CopyObjects": 0,
    "NodeGUID": "00123456-9FFA-46F4-9876-C2C9876F31FF",
    "ServerName": "TSM-ABC-01",
    "NodeGroupId": 0,
    "GroupName": null,
    "DateTimeCreated": "0001-01-01T00:00:00"
  },
  {
    "DateCreated": "2016-03-10T00:00:00",
    "PrimaryObjects": 888431,
    "CopyObjects": 0,
   "NodeGUID": "00123456-9FFA-46F4-9876-C2C9876F31FF",
    "ServerName": "SL_TSM02",
    "NodeGroupId": 0,
    "GroupName": null,
    "DateTimeCreated": "0001-01-01T00:00:00"
  },
  {
    "DateCreated": "2016-03-09T00:00:00",
    "PrimaryObjects": 1773311,
    "CopyObjects": 0,
    "NodeGUID": "00123456-9FFA-46F4-9876-C2C9876F31FF",
    "ServerName": "TSM-ABC-01",
    "NodeGroupId": 0,
    "GroupName": null,
    "DateTimeCreated": "0001-01-01T00:00:00"
  },
  {
    "DateCreated": "2016-03-09T00:00:00",
    "PrimaryObjects": 888736,
    "CopyObjects": 0,
    "NodeGUID": "00123456-9FFA-46F4-9876-C2C9876F31FF",
    "ServerName": "SL_TSM02",
    "NodeGroupId": 0,
    "GroupName": null,
    "DateTimeCreated": "0001-01-01T00:00:00"
  }
]