Returns a resource representation of the organization mailboxes processed by the backup job.
Request
To get a resource representation of the processed mailboxes by the backup job, send the GET HTTPS request to the URL of the /Jobs/{ID}/SelectedMailboxes resource:
HTTPS Request
GET https://<Backup-Office365>:<Port>/v1/Jobs/{ID}/SelectedMailboxes |
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 /Jobs/{ID}/SelectedMailboxes resource.
Example
The following request returns an entity representation of the mailboxes processed by the backup job with ID 00b96531-1a68-4c90-a398-91141ffedb3b.
Request: GET https://support.east.local:4443/v1/Jobs/00b96531-1a68-4c90-a398-91141ffedb3b/SelectedMailboxes
Request Header: Authorization: Bearer <Access-Token>
Response: 200 OK
Response Body: { "offset": 0, "limit": 30, "results": [ { "id": "479ae6aa-610b-4652-8966-5db06021903c", "email": "petep@eastsupport.onmicrosoft.com", "name": "Peter Parker", "isBackedUp": "true", "_links": { "self": { "href": "https://support.east.local:4443/v1/Organizations/7b2b1ae1-7bbb-4651-b479-bda7edc7838b/Mailboxes/479ae6aa-610b-4652-8966-5db06021903c" }, "organization": { "href": "https://support.east.local:4443/v1/Organizations/7b2b1ae1-7bbb-4651-b479-bda7edc7838b" } } }, { "id": "d38fbc9f-e856-4bc2-8ded-3e92adde2360", "email": "pgraham@eastsupport.onmicrosoft.com", "name": "Paul Graham", "isBackedUp": "true", "_links": { "self": { "href": "https://support.east.local:4443/v1/Organizations/7b2b1ae1-7bbb-4651-b479-bda7edc7838b/Mailboxes/d38fbc9f-e856-4bc2-8ded-3e92adde2360" }, "organization": { "href": "https://support.east.local:4443/v1/Organizations/7b2b1ae1-7bbb-4651-b479-bda7edc7838b" } } }, ...], "_links": { "self": { "href": "https://support.east.local:4443/v1/jobs/00b96531-1a68-4c90-a398-91141ffedb3b/SelectedMailboxes?offset=0&limit=30" } } } |
Related Topics
Backup of Organizational Mailboxes