Edit

Share via


browseQueryResponseItem resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents the response of the sharepointBrowseSession and oneDriveForBusinessBrowse APIs.

Properties

Property Type Description
itemKey String Unique identifier of the returned item.
itemsCount Int32 The count of items present within the items; for example, the count of files in a folder.
name String The name of the item.
sizeInBytes String The size of the item in bytes.
type browseQueryResponseItemType The type of the item. The possible values are: none, site, documentLibrary, folder, file, unknownFutureValue.
webUrl String The web URL of the item.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.browseQueryResponseItem",
  "itemKey": "String",
  "itemsCount": "Int32",
  "name": "String",
  "sizeInBytes": "String",
  "type": "String",
  "webUrl": "String"
}