Removing Backup Job Items
You can remove specified backup items from a backup job with the specified ID.
Request
DELETE https://<hostname>:4443/v6/Jobs/{jobId}/SelectedItems?ids=<id_1>,<id_2>,<...>,<id_N> |
Request Headers
The request header must contain an authorization token of the current session.
Request Parameters
The following parameters must be specified in the URL of the request:
Parameter | Type | Description |
---|---|---|
jobId | string | Specifies the identification number of the backup job. For more information on how to get this parameter, see Getting Backup Jobs. |
ids | string | Specifies the identification number of one or more items that you want to remove from the backup job processing list. For more information on how to get this parameter, see Getting Backup Job Items. To specify multiple items, use comma. |
Request Body
None.
Response
The server returns the following response to the client.
Response Codes
A successfully completed operation returns a response code 204 No Content.
Response Headers
The response to this request contains the following headers. The response may also include additional standard HTTPS headers.
Header | Description |
---|---|
Content-length | The length of the response body. |
Content-type | The media type and syntax of the response body message: application/json; charset=utf-8 |
Response Body
None.
Example
The example shows how to remove the selected backup items.
Request: DELETE https://abc.tech.local:4443/v6/Jobs/a754bf50-1221-47b5-a199-69763aa07497/SelectedItems?ids=2b38d840-8098-4614-b369-ebce33f9b2c7d03e1081-5169-4ead-bc26-fddd02fe6d6b00000000-0000-0000-0000-000000000000,e1fa728c-4150-4724-ab3b-5deda33db0cf4cd3f21d-52f3-42d7-b22c-2d0a03a338897cbb3a72-e358-4e7c-86f2-0e1cafe5c798
Request Header: Authorization: Bearer <Access-Token>
Response: 204 No Content |