Skip to content

Commit 6b4a885

Browse files
authored
Merge pull request #28202 from microsoftgraph/main
Merge to publish.
2 parents 5d40351 + 0b98a8b commit 6b4a885

File tree

161 files changed

+4393
-167
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

161 files changed

+4393
-167
lines changed
Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
---
2+
title: "List browseSessions"
3+
description: "Get a list of the browseSessionBase objects and their properties."
4+
author: "manikantsinghms"
5+
ms.date: 09/23/2025
6+
ms.localizationpriority: medium
7+
ms.subservice: "m365-backup-storage"
8+
doc_type: apiPageType
9+
---
10+
11+
# List browseSessions
12+
13+
Namespace: microsoft.graph
14+
15+
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
16+
17+
Get a list of the [browseSessionBase](../resources/browsesessionbase.md) objects and their properties.
18+
19+
## Permissions
20+
21+
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions [only if your app requires it](/graph/permissions-overview#best-practices-for-using-microsoft-graph-permissions). For details about delegated and application permissions, see [Permission types](/graph/permissions-overview#permission-types). To learn more about these permissions, see the [permissions reference](/graph/permissions-reference).
22+
23+
<!-- {
24+
"blockType": "permissions",
25+
"name": "backuprestoreroot-list-browsesessions-permissions"
26+
}
27+
-->
28+
[!INCLUDE [permissions-table](../includes/permissions/backuprestoreroot-list-browsesessions-permissions.md)]
29+
30+
## HTTP request
31+
32+
<!-- {
33+
"blockType": "ignored"
34+
}
35+
-->
36+
``` http
37+
GET /solutions/backupRestore/browseSessions
38+
```
39+
40+
## Optional query parameters
41+
42+
This method supports some of the OData query parameters to help customize the response. For general information, see [OData query parameters](/graph/query-parameters).
43+
44+
## Request headers
45+
46+
|Name|Description|
47+
|:---|:---|
48+
|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).|
49+
50+
## Request body
51+
52+
Don't supply a request body for this method.
53+
54+
## Response
55+
56+
If successful, this method returns a `200 OK` response code and a collection of [browseSessionBase](../resources/browsesessionbase.md) objects in the response body.
57+
58+
## Examples
59+
60+
### Request
61+
62+
The following example shows a request.
63+
64+
<!-- {
65+
"blockType": "request",
66+
"name": "list_browsesessionbase"
67+
}
68+
-->
69+
``` http
70+
GET https://graph.microsoft.com/beta/solutions/backupRestore/browseSessions
71+
```
72+
73+
### Response
74+
75+
The following example shows the response.
76+
>**Note:** The response object shown here might be shortened for readability.
77+
<!-- {
78+
"blockType": "response",
79+
"truncated": true,
80+
"@odata.type": "Collection(microsoft.graph.browseSessionBase)"
81+
}
82+
-->
83+
``` http
84+
HTTP/1.1 200 OK
85+
Content-Type: application/json
86+
87+
{
88+
"@odata.context": "https://graph.microsoft.com/beta/$metadata#solutions/backupRestore/browseSessions",
89+
"value": [
90+
{
91+
"@odata.type": "#microsoft.graph.sharePointBrowseSession",
92+
"id": "ASAA3_9h-N8hJaHRT4L-FA4bBG-ttVmUEwbDuUeDxhm0oaOj1w",
93+
"restorePointDateTime": "2025-12-25T03:00:18Z",
94+
"status": "created",
95+
"createdDateTime": "2025-12-26T06:00:22Z",
96+
"expirationDateTime": "2025-12-29T06:00:20Z",
97+
"backupSizeInBytes": "454436",
98+
"siteId": "139459b5-c306-47b9-83c6-19b4a1a3a3d7"
99+
},
100+
{
101+
"@odata.type": "#microsoft.graph.oneDriveForBusinessBrowseSession",
102+
"id": "ASAA3_8kysv7AWN-Sb9JndIPy67ZWhpFmgIk2EKs05DqCIN25Q",
103+
"restorePointDateTime": "2025-12-26T03:00:56Z",
104+
"status": "created",
105+
"createdDateTime": "2025-12-26T05:56:03Z",
106+
"expirationDateTime": "2025-12-29T05:56:01Z",
107+
"backupSizeInBytes": "311659",
108+
"directoryObjectId": "9a451a5a-2402-42d8-acd3-90ea088376e5"
109+
},
110+
{
111+
"@odata.type": "#microsoft.graph.sharePointBrowseSession",
112+
"id": "ASAA3_-8mIMTToEDSJypqJz2TgGbtVmUEwbDuUeDxhm0oaOj1w",
113+
"restorePointDateTime": "2025-12-26T03:00:56Z",
114+
"status": "created",
115+
"createdDateTime": "2025-12-26T05:54:36Z",
116+
"expirationDateTime": "2025-12-29T05:54:35Z",
117+
"backupSizeInBytes": "454433",
118+
"siteId": "139459b5-c306-47b9-83c6-19b4a1a3a3d7"
119+
}
120+
]
121+
}
122+
```
123+
Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
---
2+
title: "List oneDriveForBusinessBrowseSessions"
3+
description: "Get a list of the oneDriveForBusinessBrowseSession objects and their properties."
4+
author: "manikantsinghms"
5+
ms.date: 09/23/2025
6+
ms.localizationpriority: medium
7+
ms.subservice: "m365-backup-storage"
8+
doc_type: apiPageType
9+
---
10+
11+
# List oneDriveForBusinessBrowseSessions
12+
13+
Namespace: microsoft.graph
14+
15+
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
16+
17+
Get a list of the [oneDriveForBusinessBrowseSession](../resources/onedriveforbusinessbrowsesession.md) objects and their properties.
18+
19+
## Permissions
20+
21+
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions [only if your app requires it](/graph/permissions-overview#best-practices-for-using-microsoft-graph-permissions). For details about delegated and application permissions, see [Permission types](/graph/permissions-overview#permission-types). To learn more about these permissions, see the [permissions reference](/graph/permissions-reference).
22+
23+
<!-- {
24+
"blockType": "permissions",
25+
"name": "backuprestoreroot-list-onedriveforbusinessbrowsesessions-permissions"
26+
}
27+
-->
28+
[!INCLUDE [permissions-table](../includes/permissions/backuprestoreroot-list-onedriveforbusinessbrowsesessions-permissions.md)]
29+
30+
## HTTP request
31+
32+
<!-- {
33+
"blockType": "ignored"
34+
}
35+
-->
36+
``` http
37+
GET /solutions/backupRestore/oneDriveForBusinessBrowseSessions
38+
```
39+
40+
## Optional query parameters
41+
42+
This method does not support query parameters.
43+
44+
## Request headers
45+
46+
|Name|Description|
47+
|:---|:---|
48+
|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).|
49+
50+
## Request body
51+
52+
Don't supply a request body for this method.
53+
54+
## Response
55+
56+
If successful, this method returns a `200 OK` response code and a collection of [oneDriveForBusinessBrowseSession](../resources/onedriveforbusinessbrowsesession.md) objects in the response body.
57+
58+
## Examples
59+
60+
### Request
61+
62+
The following example shows a request.
63+
<!-- {
64+
"blockType": "request",
65+
"name": "list_onedriveforbusinessbrowsesession"
66+
}
67+
-->
68+
``` http
69+
GET https://graph.microsoft.com/beta/solutions/backupRestore/oneDriveForBusinessBrowseSessions
70+
```
71+
72+
### Response
73+
74+
The following example shows the response.
75+
>**Note:** The response object shown here might be shortened for readability.
76+
<!-- {
77+
"blockType": "response",
78+
"truncated": true,
79+
"@odata.type": "Collection(microsoft.graph.oneDriveForBusinessBrowseSession)"
80+
}
81+
-->
82+
``` http
83+
HTTP/1.1 200 OK
84+
Content-Type: application/json
85+
86+
{
87+
"@odata.context": "https://graph.microsoft.com/beta/$metadata#solutions/backupRestore/oneDriveForBusinessBrowseSessions",
88+
"value": [
89+
{
90+
"@odata.type": "#microsoft.graph.oneDriveForBusinessBrowseSession",
91+
"id": "ASAA3_8kysv7AWN-Sb9JndIPy67ZWhpFmgIk2EKs05DqCIN25Q",
92+
"restorePointDateTime": "2025-12-26T03:00:56Z",
93+
"status": "created",
94+
"createdDateTime": "2025-12-26T05:56:03Z",
95+
"expirationDateTime": "2025-12-29T05:56:01Z",
96+
"backupSizeInBytes": "311659",
97+
"directoryObjectId": "9a451a5a-2402-42d8-acd3-90ea088376e5"
98+
}
99+
]
100+
}
101+
```
102+
Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
---
2+
title: "List sharePointBrowseSessions"
3+
description: "Get a list of the sharePointBrowseSession objects and their properties."
4+
author: "manikantsinghms"
5+
ms.date: 09/23/2025
6+
ms.localizationpriority: medium
7+
ms.subservice: "m365-backup-storage"
8+
doc_type: apiPageType
9+
---
10+
11+
# List sharePointBrowseSessions
12+
13+
Namespace: microsoft.graph
14+
15+
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)]
16+
17+
Get a list of the [sharePointBrowseSession](../resources/sharepointbrowsesession.md) objects and their properties.
18+
19+
## Permissions
20+
21+
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions [only if your app requires it](/graph/permissions-overview#best-practices-for-using-microsoft-graph-permissions). For details about delegated and application permissions, see [Permission types](/graph/permissions-overview#permission-types). To learn more about these permissions, see the [permissions reference](/graph/permissions-reference).
22+
23+
<!-- {
24+
"blockType": "permissions",
25+
"name": "backuprestoreroot-list-sharepointbrowsesessions-permissions"
26+
}
27+
-->
28+
[!INCLUDE [permissions-table](../includes/permissions/backuprestoreroot-list-sharepointbrowsesessions-permissions.md)]
29+
30+
## HTTP request
31+
32+
<!-- {
33+
"blockType": "ignored"
34+
}
35+
-->
36+
``` http
37+
GET /solutions/backupRestore/sharePointBrowseSessions
38+
```
39+
40+
## Optional query parameters
41+
42+
This method does not support query parameters.
43+
44+
## Request headers
45+
46+
|Name|Description|
47+
|:---|:---|
48+
|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).|
49+
50+
## Request body
51+
52+
Don't supply a request body for this method.
53+
54+
## Response
55+
56+
If successful, this method returns a `200 OK` response code and a collection of [sharePointBrowseSession](../resources/sharepointbrowsesession.md) objects in the response body.
57+
58+
## Examples
59+
60+
### Request
61+
62+
The following example shows a request.
63+
<!-- {
64+
"blockType": "request",
65+
"name": "list_sharepointbrowsesession"
66+
}
67+
-->
68+
``` http
69+
GET https://graph.microsoft.com/beta/solutions/backupRestore/sharePointBrowseSessions
70+
```
71+
72+
### Response
73+
74+
The following example shows the response.
75+
>**Note:** The response object shown here might be shortened for readability.
76+
<!-- {
77+
"blockType": "response",
78+
"truncated": true,
79+
"@odata.type": "Collection(microsoft.graph.sharePointBrowseSession)"
80+
}
81+
-->
82+
``` http
83+
HTTP/1.1 200 OK
84+
Content-Type: application/json
85+
86+
{
87+
"@odata.context": "https://graph.microsoft.com/beta/$metadata#solutions/backupRestore/sharePointBrowseSessions",
88+
"value": [
89+
{
90+
"@odata.type": "#microsoft.graph.sharePointBrowseSessions",
91+
"id": "ASAA3_8kysv7AWN-Sb9JndIPy67ZWhpFmgIk2EKs05DqCIN25Q",
92+
"restorePointDateTime": "2025-12-26T03:00:56Z",
93+
"status": "created",
94+
"createdDateTime": "2025-12-26T05:56:03Z",
95+
"expirationDateTime": "2025-12-29T05:56:01Z",
96+
"backupSizeInBytes": "311659",
97+
"siteId": "9a451a5a-2402-42d8-acd3-90ea088376e5"
98+
}
99+
]
100+
}
101+
```
102+

0 commit comments

Comments
 (0)