You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/backup/backup-azure-arm-userestapi-managejobs.md
+15-8Lines changed: 15 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,20 @@
1
1
---
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
6
7
ms.assetid: b234533e-ac51-4482-9452-d97444f98b38
7
8
author: AbhishekMallick-MS
8
9
ms.author: v-abhmallick
10
+
ms.custom: engagement-fy24
9
11
---
10
12
11
-
# Track backup and restore jobs using REST API
13
+
# Track the backup and restore jobs using REST API in Azure Backup
12
14
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.
14
18
15
19
## Fetch Job information from operations
16
20
@@ -38,7 +42,7 @@ The Azure VM backup job is identified by "jobId" field and can be tracked as men
38
42
GET https://management.azure.com/Subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{vaultName}/backupJobs/{jobName}?api-version=2019-05-13
39
43
```
40
44
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.
42
46
43
47
### Response
44
48
@@ -48,7 +52,7 @@ The `{jobName}` is "jobId" mentioned above. The response is always 200 OK with t
48
52
49
53
#### Example response
50
54
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.
0 commit comments