Skip to main content

Get Targets

GET /v1/backup/target

Retrieves a collection of backup targets for the authenticated tenant. Each item represents a protected workload and includes platform details, storage size, integration metadata, risk score, latest job status, and most recent recovery point information.

Response Example

[
{
"os": "Windows Server 2012",
"size": {
"bytes": 7802917908,
"gb": 7.27
},
"integration": {
"id": "integration-id-1",
"name": "Example Integration",
"application": "Exchange Online"
},
"risc": {
"score": 0.51
},
"jobs": {
"last": {
"status": {
"message": "Failed",
"type": "Failed"
},
"id": "job-id-1"
},
"recovery": {
"date": {
"start": "2025-10-28T02:11:27.039Z",
"arpo": "1d, 9h, 48m",
"arpoHours": 33.809155833333335
},
"id": "recovery-id-1"
}
},
"_id": "target-id-1",
"token": "<token-placeholder>",
"__v": 0,
"clientname": "Example Backup A",
"created": "2025-06-20T08:30:56.752Z",
"displayname": "Example Backup A",
"hostname": "example-backup-a",
"name": "Example Backup A",
"status": {
"active": true,
"deleted": false,
"_id": "status-id-1"
},
"tenant": "tenant-id-1",
"updated": "2025-10-29T12:49:15.190Z",
"version": "12",
"id": "target-id-1"
},
{
"os": "Windows Server 2012",
"size": {
"bytes": 4685011353,
"gb": 4.36
},
"integration": {
"id": "integration-id-2",
"name": "Example Integration",
"application": "Cloud Apps / OneDrive"
},
"risc": {
"score": 0
},
"jobs": {
"last": {
"status": {
"message": "Successful",
"type": "Successful"
},
"id": "job-id-2"
},
"recovery": {
"date": {
"start": "2025-10-29T02:11:27.147Z",
"arpo": "9h, 48m",
"arpoHours": 9.809125833333333
},
"id": "recovery-id-2"
}
},
"_id": "target-id-2",
"token": "<token-placeholder>",
"__v": 0,
"clientname": "Example Backup B",
"created": "2025-06-20T08:48:13.918Z",
"displayname": "Example Backup B",
"hostname": "example-backup-b",
"name": "Example Backup B",
"status": {
"active": true,
"deleted": false,
"_id": "status-id-2"
},
"tenant": "tenant-id-1",
"updated": "2025-10-29T12:49:15.190Z",
"version": "12",
"id": "target-id-2"
}
]