(GET) /Organization
Returns a resource representation an organization added to Veeam Backup for Microsoft Office 365.
Request
To get an organization whose credentials are used to authenticate against the Veeam Backup for Microsoft Office 365 server, send GET HTTPS request to the URL of the /Organization resource.
HTTPS Request
GET https://<Backup-Office365>:4443/v3/Organization |
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 /Organization collection resource.
Example
The following request returns an entity representation of an organization whose credentials are used to authenticate against the Veeam Backup for Microsoft Office 365 server.
Request: GET https://support.east.local:4443/v3/Organization
Request Header: Authorization: Bearer <Access-Token>
Response: 200 OK
Response Body: "type": "office365", "region": "worldwide", "isExchangeOnline": "true", "isSharePointOnline": "true", "exchangeOnlineSettings": { "account": "username", "useMfa": "true", "grantAdminAccess": "true", "useCustomVeeamAADApplication": "true", "ApplicationId" : "feccc769-5f39-4797-8918-96df38908a90", "ApplicationSecret" : "secret", "ApplicationCertificate" : "U29tZSBzZWNyZXQ=", "ApplicationCertificateThumbprint" : "F767D7E58C39B295"
}, "sharePointOnlineSettings": { "account": "username", "useMfa": "true", "grantAdminAccess": "true", "usecustomveeamaadapplication": "true", "ApplicationId" : "feccc769-5f39-4797-8918-96df38908a90", "ApplicationSecret" : "secret", "ApplicationCertificate" : "U29tZSBzZWNyZXQ=", "ApplicationCertificateThumbprint" : "F767D7E58C39B295"
} } |