Getting Restore Points for Mailboxes
You can get a list of Microsoft Exchange mailboxes contained in a restore point with the specified ID.
Request
GET https://<hostname>:4443/v6/RestorePoints/{restorePointId}/mailboxes |
Request Headers
The request header must contain an authorization token of the current session.
Request Parameters
The following parameter must be specified in the URL of the request:
Parameter | Type | Description |
---|---|---|
restorePointId | string | Specifies the identification number of the restore point. For more information on how to get this parameter, see Getting Restore Points. |
Request Body
None.
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
In the response body, the server returns a resource representation of the /RestorePoints/{restorePointId}/mailboxes resource. The response body contains the following properties:
Property | Type | Description |
---|---|---|
id | string | Specifies the mailbox ID. |
displayName | string | Specifies the mailbox display name. |
string | Specifies the mailbox email address. | |
isArchive | boolean | Defines whether the mailbox is a mailbox of the Archive type. |
_links | Dictionary of string [key] and Object [value] | Links to related resources (navigation property). |
Example
The example returns a resource representation of mailboxes in the restore point with the ID f8eec7e0-e063-4d6f-b695-5fb7757e4ebe2d83e73a-6b50-4a68-8d52-655c84d98c62.
Request: GET https://abc.tech.local:4443/v6/RestorePoints/f8eec7e0-e063-4d6f-b695-5fb7757e4ebe2d83e73a-6b50-4a68-8d52-655c84d98c62/mailboxes
Request Header: Authorization: Bearer <Access-Token>
Response: 200 OK
Response Body: [ { "id": "9eeb1c42-b11d-45aa-8407-85f865ada63d", "displayName": "admin8", "email": "admin8@abc.onmicrosoft.com", "isArchive": false, "_links": { "restorePoint": { "href": "/v6/restorePoints/f8eec7e0-e063-4d6f-b695-5fb7757e4ebe2d83e73a-6b50-4a68-8d52-655c84d98c62" } } }, { "id": "6aff6ff9-94c6-4364-b7e2-1d228d41a798", "displayName": "admin7", "email": "admin7@abc.onmicrosoft.com", "isArchive": false, "_links": { "restorePoint": { "href": "/v6/restorePoints/f8eec7e0-e063-4d6f-b695-5fb7757e4ebe2d83e73a-6b50-4a68-8d52-655c84d98c62" } } } ] |