Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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 a browse session created on a restore point of a backed-up SharePoint site.
Inherits from browseSessionBase.
Methods
| Method | Return type | Description |
|---|---|---|
| Create | sharePointBrowseSession | Create a new sharePointBrowseSession object. |
| Get | sharePointBrowseSession | Read the properties and relationships of sharePointBrowseSession object. |
| List | sharePointBrowseSession collection | Get a list of the sharePointBrowseSession objects and their properties. |
| browse | browseQueryResponseItem collection | Allow client to browse files and folder present within a BrowseSession |
Properties
| Property | Type | Description |
|---|---|---|
| backupSizeInBytes | String | The size of the backup in bytes. |
| createdDateTime | DateTimeOffset | The time of the creation of the browse session. |
| error | publicError | Contains the error details if the browse session creation fails. |
| expirationDateTime | DateTimeOffset | The time after which the browse session is deleted automatically. |
| id | String | The unique identifier of the browse session. Inherited from entity. Inherits from entity |
| restorePointDateTime | DateTimeOffset | The date time of the restore point on which browse session is created. |
| status | browseSessionStatus | The status of the browse session. The possible values are: creating, created, failed, unknownFutureValue. |
| siteId | String | Id of the backed-up SharePoint site. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.sharePointBrowseSession",
"id": "String (identifier)",
"status": "String",
"createdDateTime": "String (timestamp)",
"expirationDateTime": "String (timestamp)",
"restorePointDateTime": "String (timestamp)",
"backupSizeInBytes": "String",
"error": {
"@odata.type": "microsoft.graph.publicError"
},
"siteId": "String"
}