Skip to content

Commit 04901d9

Browse files
Merge pull request #271604 from AbhishekMallick-MS/Apr-9-2024-Freshness
Freshness - Track jobs via REST API
2 parents 474dbe9 + fcc5c69 commit 04901d9

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

articles/backup/backup-azure-arm-userestapi-managejobs.md

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
---
2-
title: Manage Backup Jobs using REST API
3-
description: In this article, learn how to track and manage backup and restore jobs of Azure Backup using REST API.
4-
ms.topic: conceptual
5-
ms.date: 08/03/2018
2+
title: Manage the backup jobs using REST API in Azure Backup
3+
description: In this article, learn how to track and manage the backup and restore jobs of Azure Backup using REST API.
4+
ms.service: backup
5+
ms.topic: how-to
6+
ms.date: 04/09/2024
67
ms.assetid: b234533e-ac51-4482-9452-d97444f98b38
78
author: AbhishekMallick-MS
89
ms.author: v-abhmallick
10+
ms.custom: engagement-fy24
911
---
1012

11-
# Track backup and restore jobs using REST API
13+
# Track the backup and restore jobs using REST API in Azure Backup
1214

13-
Azure Backup service triggers jobs that run in background in various scenarios such as triggering backup, restore operations, disabling backup. These jobs can be tracked using their IDs.
15+
This article describes how to monitor the backup and restore jobs using REST API in Azure Backup.
16+
17+
The Azure Backup service triggers jobs that run in background in various scenarios such as triggering backup, restore operations, disabling backup. You can track these jobs using their IDs.
1418

1519
## Fetch Job information from operations
1620

@@ -38,7 +42,7 @@ The Azure VM backup job is identified by "jobId" field and can be tracked as men
3842
GET https://management.azure.com/Subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{vaultName}/backupJobs/{jobName}?api-version=2019-05-13
3943
```
4044

41-
The `{jobName}` is "jobId" mentioned above. The response is always 200 OK with the "status" field indicating the current status of the job. Once it's "Completed" or "CompletedWithWarnings", the 'extendedInfo' section reveals more details about the job.
45+
The `{jobName}` is "jobId" mentioned above. The response is always 200 OK with the "status" field indicating the current status of the job. Once it's *Completed* or *CompletedWithWarnings*, the 'extendedInfo' section reveals more details about the job.
4246

4347
### Response
4448

@@ -48,7 +52,7 @@ The `{jobName}` is "jobId" mentioned above. The response is always 200 OK with t
4852

4953
#### Example response
5054

51-
Once the *GET* URI is submitted, a 200 (OK) response is returned.
55+
Once the *GET* URI submission is complete, a 200 (OK) response is returned.
5256

5357
```http
5458
HTTP/1.1 200 OK
@@ -106,3 +110,6 @@ X-Powered-By: ASP.NET
106110
}
107111
108112
```
113+
## Next steps
114+
115+
[About Azure Backup](backup-overview.md).

0 commit comments

Comments
 (0)