To learn more, visit the Druva documentation.

Basic Parameters

ParameterDescription
Device IDFilter to get list of last successful backups for a particular device using its unique ID.
Page TokenThe token to access the next page of results. Use the token value received in the previous response’s parameter ‘nextPageToken’.
User IDFilter to get list of last successful backups on devices owned by a particular user using their user ID.

Advanced Parameters

ParameterDescription
End Backup TimeFilter to list successful backups that started before a particular date and time.
Max Backup End TimeFilter to list successful backups that ended before a particular date and time.
Min Backup End TimeFilter to list successful backups that ended after a particular date and time.
Start Backup TimeFilter to list successful backups that started after a particular date and time.

Example Output

{    "totalSize": 1,    "nextPageToken": "MTExMQ==",    "backups": [        {            "deviceID": 12345,            "backupStatus": "Completed",            "filesBackedUp": 124,            "bytesTransferred": 23456,            "filesMissed": 50,            "snapshotSize": "2546 MB",            "startTime": "2019-10-25T00:00:00Z",            "endTime": "2019-10-25T00:00:00Z",            "systemSettingsBackedUp": true        }    ]}

Workflow Library Example

List Endpoint Backups with Druva and Send Results Via Email

Preview this Workflow on desktop