Getting OneDrive Folders
Returns a resource representation of a OneDrive folder with a specified ID.
Request
GET https://<hostname>:4443/v5/RestoreSessions/{restoreSessionId}/Organization/OneDrives/{oneDriveId}/Folders/{folderId} |
Request Headers
The request header must contain an authorization token of the current session.
Request Body
None.
Response
The server returns the following response to the client.
Response Codes
A successfully completed operation returns a 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 response body message: application/json; charset=utf-8 |
Response Body
Property | Type | Description |
---|---|---|
Id | string | Specifies the ID of the backed-up OneDrive folder. |
Name | string | Specifies the name of the backed-up OneDrive document. |
Children | object[] | Specifies _links for the children objects. |
Parent | object | Specifies _links for the parent object. |
Version | int | Specifies the version of the document. |
CreatedBy | string | Specifies the user, which created the document. |
CreationTime | UTC | Specifies date and time when the folder was created. |
ModifiedBy | string | Specifies the user, which performed the last modifications to the document. |
ModificationTime | UTC | Specifies date and time when the document was modified. |
_links | Dictionary of string [key] and Object [value] | Links to related resources (navigation property). |
Example
The following request returns an entity representation of a OneDrive folder for exploring and performing restore operations.
Request: GET https://support.north.local:4443/v5/RestoreSessions/{restoreSessionId}/Organization/OneDrives/{oneDriveId}/Folders/{folderId}
Request Header: Authorization: Bearer <Access-Token>
Response: 200 OK
Response Body: { "offset": 0, "limit": 30, "results": [ { "id": "89e2b52a-66e3-4a1a-a088-4655dfbe95d7", "name": "F1", "createdBy": "System Account", "creationTime": "2017-04-04T12:01:49", "modifiedBy": "System Account", "modificationTime": "2017-04-04T12:01:49", "_links": { "self": { "href": "https://support.north.local:4443/v5/restoresessions/61954db6-7278-4d26-86f7-888bda5a4ec4/organization/onedrives/b3184e77-b95b-45f7-96cc-180a20b61cbd8507931c-4561-4ddf-bc90-411aba44bb39/folders/89e2b52a-66e3-4a1a-a088-4655dfbe95d7" }, "onedrive": { "href": "https://support.north.local:4443/v5/restoresessions/61954db6-7278-4d26-86f7-888bda5a4ec4/organization/onedrives/b3184e77-b95b-45f7-96cc-180a20b61cbd8507931c-4561-4ddf-bc90-411aba44bb39" }, "folders": { "href": "https://support.north.local:4443/v5/restoresessions/61954db6-7278-4d26-86f7-888bda5a4ec4/organization/onedrives/b3184e77-b95b-45f7-96cc-180a20b61cbd8507931c-4561-4ddf-bc90-411aba44bb39/folders?parentId=89e2b52a-66e3-4a1a-a088-4655dfbe95d7" }, "documents": { "href": "https://support.north.local:4443/v5/restoresessions/61954db6-7278-4d26-86f7-888bda5a4ec4/organization/onedrives/b3184e77-b95b-45f7-96cc-180a20b61cbd8507931c-4561-4ddf-bc90-411aba44bb39/documents?parentId=89e2b52a-66e3-4a1a-a088-4655dfbe95d7" } } } } |