Editing Backup Job Items
You can edit the specified backup item in a backup job with the specified ID.
Request
PUT https://<hostname>:4443/v6/Jobs/{jobId}/SelectedItems/{itemId} |
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. |
itemId | string | Specifies the identification number of the item in the backup file. For more information on how to get this parameter, see Getting Backup Job Items. |
Request Body
The request body must contain the following properties:
Property | Type | Description |
---|---|---|
selectedItem | backupItem | Specifies the backup item that you want to edit. |
For more information about properties that you must specify for different types of backup items, see backupitemType.
Response
The server returns the following response to the client.
Response Codes
A successfully completed operation returns a response code 200 OK.
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
Request: PUT https://abc.tech.local:4443/v6/Jobs/31a66931-b5d3-49f7-bba1-c46db49d3d14/SelectedItems/2b788f9a-0c3e-4087-be1b-226a8b9f02cb9878f4b0-ec8d-4c58-bc91-277ef992c4cc82aceabf-9192-4049-a6df-1d35c1318714
Request Header: Authorization: Bearer <Access-Token>
Request Body: [ { "type": "User", "user": { "id": "2b788f9a-0c3e-4087-be1b-226a8b9f02cb9878f4b0-ec8d-4c58-bc91-277ef992c4cc", "displayName": "Admin", "name": "admin@company.onmicrosoft.com", "type": "User", "_links": { "self": { "href": "/v6/organizations/1ef78585-956d-485a-b70b-7a549f319111/users/2b788f9a-0c3e-4087-be1b-226a8b9f02cb9878f4b0-ec8d-4c58-bc91-277ef992c4cc" }, "organization": { "href": "/v6/organizations/1ef78585-956d-485a-b70b-7a549f319111" }, "onedrives": { "href": "/v6/organizations/1ef78585-956d-485a-b70b-7a549f319111/users/2b788f9a-0c3e-4087-be1b-226a8b9f02cb9878f4b0-ec8d-4c58-bc91-277ef992c4cc/onedrives" } } }, "mailbox": false, "oneDrive": true, "archiveMailbox": false, "site": true, "id": "2b788f9a-0c3e-4087-be1b-226a8b9f02cb9878f4b0-ec8d-4c58-bc91-277ef992c4cc82aceabf-9192-4049-a6df-1d35c1318714", "_links": { "job": { "href": "/v6/jobs/e04edb61-cb76-4b1f-a484-62aceb067a6c" }, "self": { "href": "/v6/jobs/e04edb61-cb76-4b1f-a484-62aceb067a6c/selectedItems/2b788f9a-0c3e-4087-be1b-226a8b9f02cb9878f4b0-ec8d-4c58-bc91-277ef992c4cc82aceabf-9192-4049-a6df-1d35c1318714" } } } ]
Response: 200 OK |