Returns a resource representation of an Exchange organization's mailbox with the specified ID.
Request
To get a resource representation of an organization's mailbox for exploring and performing restore operations, send the GET HTTPS request to the URL of the /RestoreSessions/{ID}/Organization/Mailboxes/{ID} resource:
HTTPS Request
GET https://<Backup-Office365>:<Port>/v1/RestoreSessions/{ID}/Organization/Mailboxes/{ID} |
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/Mailboxes/{ID} resource.
Example
The following request returns an entity representation of the organization's mailbox with ID 9f786f0f-de9a-4a90-8118-093b6cb2c4fc.
Request: GET https://support.east.local:4443/v1/RestoreSessions/9f786f0f-de9a-4a90-8118-093b6cb2c4fc/Organization/Mailboxes/{ID}
Request Header: Authorization: Bearer <Access-Token>
Response: 200 OK
Response Body: { "id": "9e9b7199-f547-467a-b580-9d283a75eaad", "name": "support.south", "email": "support.south@westsupport.com", "isArchive": "false", "_links": { "self": { "href": "https://support.east.local:4443/v1/restoresessions/8dd690ce-7dd8-4a8b-a6ec-16bdcb04dc97/organization/mailboxes/9e9b7199-f547-467a-b580-9d283a75eaad" }, "folders": { "href": "https://support.east.local:4443/v1/restoresessions/8dd690ce-7dd8-4a8b-a6ec-16bdcb04dc97/organization/mailboxes/9e9b7199-f547-467a-b580-9d283a75eaad/folders?parentId=null" }, "allfolders": { "href": "https://support.east.local:4443/v1/restoresessions/8dd690ce-7dd8-4a8b-a6ec-16bdcb04dc97/organization/mailboxes/9e9b7199-f547-467a-b580-9d283a75eaad/folders" }, "items": { "href": "https://support.east.local:4443/v1/restoresessions/8dd690ce-7dd8-4a8b-a6ec-16bdcb04dc97/organization/mailboxes/9e9b7199-f547-467a-b580-9d283a75eaad/items" } }, "_actions": { "restoretoOriginallocation": { "uri": "https://support.east.local:4443/v1/restoresessions/8dd690ce-7dd8-4a8b-a6ec-16bdcb04dc97/organization/mailboxes/9e9b7199-f547-467a-b580-9d283a75eaad/action", "method": "POST" }, "restoreTo": { "uri": "https://support.east.local:4443/v1/restoresessions/8dd690ce-7dd8-4a8b-a6ec-16bdcb04dc97/organization/mailboxes/9e9b7199-f547-467a-b580-9d283a75eaad/action", "method": "POST" }, "exporttoPst": { "uri": "https://support.east.local:4443/v1/restoresessions/8dd690ce-7dd8-4a8b-a6ec-16bdcb04dc97/organization/mailboxes/9e9b7199-f547-467a-b580-9d283a75eaad/action", "method": "POST" }, "search": { "uri": "https://support.east.local:4443/v1/restoresessions/8dd690ce-7dd8-4a8b-a6ec-16bdcb04dc97/organization/mailboxes/9e9b7199-f547-467a-b580-9d283a75eaad/action", "method": "POST" } } } |