GET api/nodereplication/filessummary

Gets summary of node replication files 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/nodereplication/filessummary?organisationId=5&startDate=2016-01-01 00:00&endDate=2016-03-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.
nodeGroupId
optional
Id of the node group
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.
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
dataType
optional
Type of data to be retrieved (e.g., ALL, BACKUP, ARCHIVE, SPACE MANAGED). The default value is ALL.
replicationAction
optional
Type of action for which data to be retrieved (e.g., REPLICATED, UPDATED, DELETED). The default value is REPLICATED.
Example Result
[
  {
    "DateCreated": "2016-03-03T00:00:00",
    "ServerName": "TSM-ABC-01",
    "NodeGUID": "7E08BD44-752F-4839-9F2A-840E5CB028A6",
    "NodeGroupId": 0,
    "GroupName": null,
    "SuccessAbsolute": 7215.0,
    "FailedAbsolute": 0.0,
    "SuccessPercentage": 100.0,
    "FailedPercentage": 0.0
  },
  {
    "DateCreated": "2016-02-24T00:00:00",
    "ServerName": "TSM-ABC-01",
    "NodeGUID": "7E08BD44-752F-4839-9F2A-840E5CB028A6",
    "NodeGroupId": 0,
    "GroupName": null,
    "SuccessAbsolute": 84151.0,
    "FailedAbsolute": 0.0,
    "SuccessPercentage": 100.0,
    "FailedPercentage": 0.0
  },
  {
    "DateCreated": "2016-02-23T00:00:00",
    "ServerName": "TSM-ABC-01",
    "NodeGUID": "7E08BD44-752F-4839-9F2A-840E5CB028A6",
    "NodeGroupId": 0,
    "GroupName": null,
    "SuccessAbsolute": 4724.0,
    "FailedAbsolute": 0.0,
    "SuccessPercentage": 100.0,
    "FailedPercentage": 0.0
  }
]