Editing Job Sessions History Settings
You can edit the history settings of backup and backup copy job sessions.
Request
PUT https://<hostname>:4443/v6/HistorySettings |
Request Headers
The request header must contain an authorization token of the current session.
Request Body
To edit the history settings of backup and backup copy job sessions, you need to enter in the request body the required properties with new values.
The request body must contain the following properties:
Property | Type | Description |
---|---|---|
keepAllsessions | boolean | If set to true, indicates that Veeam Backup for Microsoft 365 will keep backup and backup copy job sessions forever. Otherwise, the job sessions will be kept during 53 weeks by default. |
keeponlyLast | integer | Specifies the number of weeks during which backup and backup copy job sessions will be kept. |
To specify the number of weeks during which Veeam Backup for Microsoft 365 will keep backup and backup copy job sessions, perform the following steps:
- Set the keepAllsessions property to false value.
- Set the number of weeks for the keeponlyLast property.
For example:
Request Body: { "keepAllsessions": false, "keeponlyLast": 4 } |
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
The example shows how to update the history settings of backup and backup copy job sessions.
Request: PUT https://abc.tech.local:4443/v6/HistorySettings
Request Header: Authorization: Bearer <Access-Token>
Request Body: { "keepAllsessions": false, "keeponlyLast": 4 }
Response: 200 OK |