Returns a resource representation of a restore session event with a specified ID.
Request
To get a resource representation of a restore session event with a specified ID, send the GET HTTPS request to the URL of the /RestoreSessions/{ID}/Events/{ID} resource:
HTTPS Request
GET https://<Backup-Office365>:4443/v2/RestoreSessions/{ID}/Events/{ID} |
Request Headers
The request contains the following headers:
Header | Required | Description |
---|---|---|
Content-Type: application/json | true | Specifies the type of the content for your request. |
Authorization: Bearer <Access-Token> | true | The request header must contain the authorization token for the current logon session. |
Request Body
None.
Response
The server returns the following response to the client.
Response Codes
A successfully completed operation returns 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 request body message: application/json; charset=utf-8 |
Response Body
In the response body, the server returns a representation of the /RestoreSessions/{ID}/Events/{ID} resource.
Example
Request: GET https://support.east.local:4443/v2/RestoreSessions/61954db6-7278-4d26-86f7-888bda5a4ec4/Events/755d207e-ebd6-49da-9943-3b9e5eb31dee
Request Header: Content-Type: application/json Authorization: Bearer <Access-Token>
Response: 200 OK
Response Body: { "id": "755d207e-ebd6-49da-9943-3b9e5eb31dee", "type": "Save", "status": "Success", "startTime": "2017-05-30T13:57:28.0422679+03:00", "endTime": "2017-05-30T13:57:28.0869607+03:00", "duration": "00:00:00.0446928", "title": "Item is successfully restored.", "message": "Item Image.jpg was saved successfully (type: Item; source: /personal/orgUser/Documents/Image.jpg; target: C:\\Users\\user\\AppData\\Local\\Temp\\REST_SHAREPOINT_EXPORT_224b14b4-95eb-4d6c-b959-6ffc688b7576\\7077ffb8-4f64-40d7-8fcc-32f13999b727)", "order": 1, "_links": { "self": { "href": "https://support.north.local:4443/v2/restoresessions/61954db6-7278-4d26-86f7-888bda5a4ec4/events/755d207e-ebd6-49da-9943-3b9e5eb31dee" }, "restoreSession": { "href": "https://support.north.local:4443/v2/restoresessions/61954db6-7278-4d26-86f7-888bda5a4ec4" } } }
|