You can use GetSchedule to get information about a scheduled snapshot.
This method has the following input parameter:
Name | Description | Type | Default value | Required |
---|---|---|---|---|
scheduleID | Unique ID of the schedule or multiple schedules to display. | integer | None | Yes |
This method has the following return value:
Name | Description | Type |
---|---|---|
schedule | An array of schedule attributes. | schedule array |
Requests for this method are similar to the following example:
{ "method": "GetSchedule", "params": { "scheduleID" : 2 }, "id" : 1 }
This method returns a response similar to the following example:
{ "id": 1, "result": { "schedule": { "attributes": { "frequency": "Time Interval" }, "hasError": false, "hours": 0, "lastRunStatus": "Success", "lastRunTimeStarted": "2015-03-23T21:25:00Z", "minutes": 2, "monthdays": [], "paused": false, "recurring": true, "runNextInterval": false, "scheduleID": 2, "scheduleInfo": { "name": "MCA2", "volumeID": "3" }, "scheduleName": "MCAsnapshot2", "scheduleType": "Snapshot", "startingDate": "2015-03-23T19:28:57Z", "toBeDeleted": false, "weekdays": [] } } }