Returns a resource representation of the Exchange organization's mailbox database for exploring and restoring mailbox backups.
Request
To get a resource representation of an organization's mailbox database, send the GET HTTPS request to the URL of the /RestoreSessions/{ID}/Organization resource:
HTTPS Request
GET https://<Backup-Office365>:<Port>/v1/RestoreSessions/{ID}Organization |
Request Headers
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}/Organization resource.
Example
The following request returns an entity representation of the organization's mailbox database for exploring and restoring mailbox backups.
Request: GET https://support.east.local:4443/v1/RestoreSessions/0800471b-d0e2-422b-9d7c-35d15661c3fb/Organization
Request Header: Authorization: Bearer <Access-Token>
Response: 200 OK
Response Body: { "id": "673b91dc-b4a7-4d49-8318-04ef47c0ac50", "name": "westsupport.onmicrosoft.com (6/26/2017 3:07:39 PM)", "_links": { "self": { "href": "https://support.east.local:4443/v1/restoresessions/1ae9f2e8-02ba-49c6-9dbd-d0c17cceaf4c/organization" }, "mailboxes": { "href": "https://support.east.local:4443/v1/restoresessions/1ae9f2e8-02ba-49c6-9dbd-d0c17cceaf4c/organization/mailboxes" } }, "_actions": { "exporttoPst": { "uri": "https://support.east.local:4443/v1/restoresessions/1ae9f2e8-02ba-49c6-9dbd-d0c17cceaf4c/organization/action", "method": "POST" }, "search": { "uri": "https://support.east.local:4443/v1/restoresessions/1ae9f2e8-02ba-49c6-9dbd-d0c17cceaf4c/organization/action", "method": "POST" } } } |