Skip to content

Commit aae85e6

Browse files
authored
Included parameter EnableDynamicGroups
Added parameter EnableDynamicGroups
1 parent 15e95d1 commit aae85e6

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

docs/general-development/sharepoint-search-rest-api-overview.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1142,6 +1142,37 @@ GET http:// _server_/_api/search/query?querytext='sharepoint'&summarylength=
11421142
}
11431143
```
11441144

1145+
<a name="bk_ProcessPersonalFavorites"> </a>
1146+
1147+
### EnableDynamicGroups
1148+
1149+
A Boolean value that specifies whether to include the results from private Office 365 groups.
1150+
1151+
**true** to include results from private Office 365 groups; otherwise, **false**. The default value is **false**.
1152+
1153+
#### Sample GET request
1154+
1155+
```http
1156+
GET http:// _server_/_api/search/query?querytext='sharepoint'&amp;Properties='EnableDynamicGroups:true'
1157+
```
1158+
1159+
#### Sample POST request
1160+
1161+
```json
1162+
{
1163+
'__metadata': {
1164+
'type': 'Microsoft.Office.Server.Search.REST.SearchRequest'
1165+
},
1166+
'Querytext': 'sharepoint',
1167+
'Properties': {
1168+
'results': [ {
1169+
'Name': 'EnableDynamicGroups',
1170+
'Value': { 'BoolVal': true }
1171+
}
1172+
]
1173+
}
1174+
```
1175+
11451176
<a name="bk_ContentSetting"> </a>
11461177

11471178
### ContentSetting

0 commit comments

Comments
 (0)