(GET) /LicensedUsers
Returns a resource representation of a licensed users information.
Request
To get the licensed users information, send GET HTTPS request to the URL of the /LicensedUsers resource.
HTTPS Request
GET https://<Backup-Office365>:4443/v3/LicensedUsers |
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 /LicensedUsers resource.
Example
The example below returns an entity representation of the licensed users information.
Request: GET https://support.east.local:4443/v3/LicensedUsers
Request Header: Authorization: Bearer <Access-Token>
Response: 200 OK
Response Body: { "id": "93089cfa-81d6-4551-8a7b-a7290868d6f9", "name": "User ABC", "isBackedUp": "true", "lastBackupDate": "2017-11-05T17:50:35", "licenseState": "licensed", "organizationId": "feccc769-5f39-4797-8918-96df38908a90", "backedUpOrganizationId": "5a905bb5-9071-433c-9d2f-f805d4da2cf4", "organizationName": "organization ABC", } |