Returns a resource representation of а collection of all Exchange organizations added to Veeam Backup for Microsoft Office 365.
Request
To get a list of the organizations added to Veeam Backup for Microsoft Office 365, send GET HTTPS request to the URL of the /Organizations resource.
HTTPS Request
GET https://<Backup-Office365>:<Port>/v1/Organizations |
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 collection resource.
Example
The following request returns an entity representation of all organizations added to Veeam Backup for Microsoft Office 365.
Request: GET https://support.east.local:4443/v1/Organizations
Request Header: Authorization: Bearer <Access-Token>
Response: 200 OK
Response Body: [ { "type": "Office365", "id": "7b2b1ae1-7bbb-4651-b479-bda7edc7838b", "region": "worldwide", "name": "eastsupport.onmicrosoft.com", "username": "Admin@eastsupport.onmicrosoft.com", "isBackedup": "true", "firstBackuptime": "2017-05-14T09:17:45.8491057Z", "lastBackuptime": "2017-07-14T09:20:11.3371324Z", "_links": { "self": { "href": "https://support.east.local:4443/v1/Organizations/7b2b1ae1-7bbb-4651-b479-bda7edc7838b" }, "jobs": { "href": "https://support.east.local:4443/v1/Organizations/7b2b1ae1-7bbb-4651-b479-bda7edc7838b/Jobs" }, "mailboxes": { "href": "https://support.east.local:4443/v1/Organizations/7b2b1ae1-7bbb-4651-b479-bda7edc7838b/mailboxes" } }, "_actions": {} }, { "type": "OnPremises", "username": "support\\jsmith", "serverName": "yourmail.migrationendpoint.com", "useSSL": "true", "skipCAverification": "false", "skipCommonnameverification": "false", "skipRevocationcheck": "false", "id": "0cdf3763-70b2-44f7-9754-bf05638aa1cc", "name": "yourmail.migrationendpoint.com", "isBackedup": "false", "_links": { "self": { "href": "https://support.east.local:4443/v1/organizations/0cdf3763-70b2-44f7-9754-bf05638aa1cc" }, "jobs": { "href": "https://support.east.local:4443/v1/organizations/0cdf3763-70b2-44f7-9754-bf05638aa1cc/jobs" }, "mailboxes": { "href": "https://support.east.local:4443/v1/organizations/0cdf3763-70b2-44f7-9754-bf05638aa1cc/mailboxes" } }, "_actions": {} }, { "type": "Hybrid", "office365Settings": { "username": "Admin1@eastqa.onmicrosoft.com", "region": "worldwide" }, "onPremisesSettings": { "username": "qa\\rstones", "serverName": "yourmail.migrationendpointqa.com", "useSSL": "true", "skipCAverification": "false", "skipCommonnameverification": "false", "skipRevocationcheck": "false" }, "id": "f3e65435-2c10-4ff3-aa19-b3e8f59eef91", "name": "yourmail.migrationendpointqa.com", "isBackedup": "false", "_links": { "self": { "href": "https://support.east.local:4443/v1/organizations/f3e65435-2c10-4ff3-aa19-b3e8f59eef91" }, "jobs": { "href": "https://support.east.local:4443/v1/organizations/f3e65435-2c10-4ff3-aa19-b3e8f59eef91/jobs" }, "mailboxes": { "href": "https://support.east.local:4443/v1/organizations/f3e65435-2c10-4ff3-aa19-b3e8f59eef91/mailboxes" } }, "_actions": {} }, ...] |
Related Topics