(GET) /Organizations/{organizationId}/Users
Returns a resource representation of organization users.
Request
To get a resource representation of organization users, send the GET HTTPS request to the URL of the /Organizations/{organizationId}/Users resource:
HTTPS Request
GET https://<Backup-Office365>:4443/v3/Organizations/{organizationId}/Users |
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/{organizationId}/Users resource.
Example
Request: GET https://support.east.local:4443/v3/Organizations/92460656-7a85-4a04-b1af-1ea903c0bc2e/Users
Request Header: Authorization: Bearer <Access-Token>
Response: 200 OK
[ [ { "id": "221fecc1-95f3-4da8-8ed2-101143dc117a00000000-0000-0000-0000-000000000000", "displayName": "Mailbox Test", "name": "mailboxtest@backup.onmicrosoft.com", "type": "User", "isBackedUp": false, "_links": { "self": { "href": "https://support.east.local:4443/v3/organizations/92460656-7a85-4a04-b1af-1ea903c0bc2e/users/221fecc1-95f3-4da8-8ed2-101143dc117a00000000-0000-0000-0000-000000000000" }, "organization": { "href": "https://support.east.local:4443/v3/organizations/92460656-7a85-4a04-b1af-1ea903c0bc2e" }, "onedrives": { "href": "https://support.east.local:4443/v3/organizations/92460656-7a85-4a04-b1af-1ea903c0bc2e/users/221fecc1-95f3-4da8-8ed2-101143dc117a00000000-0000-0000-0000-000000000000/onedrives" } } },… …] |