This is an archive version of the document. To get the most up-to-date information, see the current version.

Searching for OneDrive Items in OneDrive Folders

You can search for backed-up OneDrive items in the specified folder.

Request

POST https://<hostname>:4443/v5/RestoreSessions/{restoreSessionId}/Organization/OneDrives/{oneDriveId}/Folders/{folderId}/action

Request Headers

The request header must contain an authorization token of the current session.

Request Parameters

The following parameters must be specified in the URL of the request:

Parameter

Type

Description

restoreSessionId

string

Specifies the identification number of the restore session. For more information on how to get this parameter, see Getting Restore Sessions.

oneDriveId

string

Specifies the identification number of OneDrive. For more information on how to get this parameter, see Getting OneDrive Items.

folderId

string

Specifies the identification number of the OneDrive folder. For more information on how to get this parameter, see Getting OneDrive Folders.

Request Body

The request body must contain the search action property:

Property

Type

Description

query

string

Specifies query parameters used to search for OneDrive items. For more information, see Query Parameters.

Query Parameters

The following table lists examples of parameters that you can use in the query string to search for Microsoft OneDrive for Business items.

For the complete list of supported query parameters, see Appendix A. Item Search Parameters.

Parameter

Type

Description

filename

string

Specifies the name (or part of the name) of the file that you want to find.

size

string

Specifies the size of the file that you want to find.

Request Example

Request:

POST https://delta.tech.local:4443/v5/RestoreSessions/0cc8eff8-f20c-4130-8ed6-f492e16d2896/Organization/OneDrives/7a780e6e-46be-4735-b542-aa7c4758e53d4774e7df-5416-47d1-8f69-ae4d92e582e9/Folders/41f68803-038f-48b0-9b70-13129ee10d1f/action

 

Request Header:

Authorization: Bearer <Access-Token>

 

Request Body:

{

  "search":{

     "query": "filename:default"

  }

}

 

Searching OneDrive Items Folder ID Note

If a value for a query parameter contains a space, provide the value in the quotation marks (""). Use the backslash (\) symbol as an escape character before these quotation marks. For example: "query": "filename: \"default properties\"".

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

The response contains the following information:

Property

Type

Description

offset

integer

Shows the offset value.

limit

integer

Shows the limit of records to be displayed on the page.

results

Results Object

Contains the Results object.

Results Object

Property

Type

Description

sizeBytes

string

Shows the size of the file (in bytes).

inheritedPermissions

boolean

Shows whether file permissions are inherited from the parent folder.

version

string

Shows the version of the item.

id

string

Shows the ID of the item.

name

string

Shows the name of the item.

createdBy

string

Shows the name of the user who created the item.

creationTime

datetime

Shows the date and time when the item was created.

modifiedBy

string

Shows the name of the user who performed the latest modification of the item.

modificationTime

datetime

Shows the date and time of the latest modification of the item.

_links

Dictionary of string [key] and Object [value]

Links to related resources (navigation property).

Response Example

Response:

200 OK

 

Response Body:

{

 "offset": 0,

 "limit": 30,

 "results": [

   {

     "sizeBytes": 641494,

     "inheritedPermissions": true,

     "version": "1.0",

     "id": "4195fe71-093f-486f-97fb-5959cd62aeee",

     "name": "maxresdefault.jpg",

     "createdBy": "user_x",

     "creationTime": "2018-02-05T12:29:24",

     "modifiedBy": "admin8",

     "modificationTime": "2018-02-05T12:29:24",

     "_links": {

       "self": {

         "href": "https://delta.tech.local:4443/v5/RestoreSessions/0cc8eff8-f20c-4130-8ed6-f492e16d2896/organization/onedrives/7a780e6e-46be-4735-b542-aa7c4758e53d4774e7df-5416-47d1-8f69-ae4d92e582e9/documents/4195fe71-093f-486f-97fb-5959cd62aeee"

       },

       "onedrive": {

         "href": "https://delta.tech.local:4443/v5/RestoreSessions/0cc8eff8-f20c-4130-8ed6-f492e16d2896/organization/onedrives/7a780e6e-46be-4735-b542-aa7c4758e53d4774e7df-5416-47d1-8f69-ae4d92e582e9"

       },

       "parent": {

         "href": "https://delta.tech.local:4443/v5/RestoreSessions/0cc8eff8-f20c-4130-8ed6-f492e16d2896/organization/onedrives/7a780e6e-46be-4735-b542-aa7c4758e53d4774e7df-5416-47d1-8f69-ae4d92e582e9/folders/41f68803-038f-48b0-9b70-13129ee10d1f"

       }

     }

   }

 ],

 "_links": {

   "self": {

     "href": "https://delta.tech.local:4443/v5/RestoreSessions/0cc8eff8-f20c-4130-8ed6-f492e16d2896/Organization/OneDrives/7a780e6e-46be-4735-b542-aa7c4758e53d4774e7df-5416-47d1-8f69-ae4d92e582e9/Folders/41f68803-038f-48b0-9b70-13129ee10d1f/action?offset=0&limit=30"

   }

 }

}