Returns a resource representation of a backup job with the specified ID.
Request
To get a resource representation of a backup job send the GET HTTPS request to the URL of the /Jobs/{ID} resource:
HTTPS Request
GET https://<Backup-Office365>:<Port>/v1/Jobs/{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 an entity representation of the /Jobs/{ID} resource.
Example
The following request returns an entity representation of a backup job with ID 93089cfa-81d6-4551-8a7b-a7290868d6f9.
Request: GET https://support.east.local:4443/v1/Jobs/93089cfa-81d6-4551-8a7b-a7290868d6f9
Request Header: Authorization: Bearer <Access-Token>
Response: 200 OK
Response Body: { "id": "93089cfa-81d6-4551-8a7b-a7290868d6f9", "name": "Backup Job ABC", "description": "Critical Mailboxes", "allMailboxes": "false", "lastStatus": "Success", "lastRun": "2017-04-01T10:12:15.3635382Z", "nextRun": "2017-04-01T22:00:00Z", "isEnabled": "true", "schedulePolicy": { "type": "Daily", "dailyType": "Sunday", "dailyTime": "08:00:00", "backupWindow": { "backupIntervalsArray": [ true, true, true, ... ], "minuteOffset": 0 }, "retryEnabled": "true", "retryNumber": 5, "retryWaitInterval": 15 }, "_links": { "self": { "href": "https://support.east.local:4443/v1/Jobs/93089cfa-81d6-4551-8a7b-a7290868d6f9" }, "organization": { "href": "https://support.east.local:4443/v1/Organizations/357c6d0d-70b7-4c59-8285-76be5ac9c136" }, "repository": { "href": "https://support.east.local:4443/v1/BackupRepositories/035bcd44-6f68-4335-b6b8-4e22452eb8ff" }, "proxy": { "href": "https://support.east.local:4443/v1/Proxies/5a905bb5-9071-433c-9d2f-f805d4da2cf4" }, "selectedMailboxes": { "href": "https://support.east.local:4443/v1/Jobs/93089cfa-81d6-4551-8a7b-a7290868d6f9/SelectedMailboxes" }, "jobsessions": { "href": "https://support.east.local:4443/v1/Jobs/93089cfa-81d6-4551-8a7b-a7290868d6f9/JobSessions" } } } |
Related Topics
Backup of Organizational Mailboxes