Returns a resource representation of all backup jobs configured for the organization with the specified ID.
Request
To get a resource representation of backup jobs that process mailbox items of the organization with the specified ID, send the GET HTTPS request to the URL of the /Organizations/{ID}/Jobs resource:
HTTPS Request
GET https://<Backup-Office365>:<Port>/v1/Organizations/{ID}/Jobs |
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 /Organizations/{ID}/Jobs resource.
Example
The following request returns an entity representation of all backup jobs configured for the organization with ID 70a8cbaf-642f-4c6f-934d-fb10e597a82a.
Request: GET https://support.east.local:4443/v1/Organizations/b2d9414d-c417-4a94-be3b-b38a3c2e8a7b/Jobs
Request Header: Authorization: Bearer <Access-Token>
Response: 200 OK
Response Body: [ { "id": "70a8cbaf-642f-4c6f-934d-fb10e597a82a", "name": "ABC Backup", "description": "Daily Backups", "allMailboxes": "true", "lastStatus": "Success", "lastRun": "2017-04-01T09:35:59.0469161Z", "nextRun": "2017-04-04T22:00:00Z", "isEnabled": "true", "schedulePolicy": { "type": "Periodically", "periodicallyEvery": "Minutes5", "dailyType": "Everyday", "dailyTime": "00:00:00", "backupWindow": { "backupIntervalsArray": [ true, true, true, ... ], "minuteOffset": 0 }, "retryEnabled": "true", "retryNumber": 1, "retryWaitInterval": 5 }, "_links": { "self": { "href": "https://support.east.local:4443/v1/Jobs/70a8cbaf-642f-4c6f-934d-fb10e597a82a" }, "organization": { "href": "https://support.east.local:4443/v1/Organizations/b2d9414d-c417-4a94-be3b-b38a3c2e8a7b" }, "repository": { "href": "https://support.east.local:4443/v1/BackupRepositories/a740fb93-4de8-4de4-977e-765dd092748f" }, "proxy": { "href": "https://support.east.local:4443/v1/Proxies/5a905bb5-9071-433c-9d2f-f805d4da2cf4" }, "selectedMailboxes": { "href": "https://support.east.local:4443/v1/Jobs/70a8cbaf-642f-4c6f-934d-fb10e597a82a/SelectedMailboxes" }, "jobsessions": { "href": "https://support.east.local:4443/v1/Jobs/70a8cbaf-642f-4c6f-934d-fb10e597a82a/JobSessions" } } }, ...] |
Related Topics
Backup of Organizational Mailboxes