List qnas
Namespace: microsoft.graph.search
Get a list of the qna objects and their properties.
This API is available in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ❌ | ❌ | ❌ |
Permissions
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. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
Permission type | Least privileged permissions | Higher privileged permissions |
---|---|---|
Delegated (work or school account) | SearchConfiguration.Read.All | SearchConfiguration.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | SearchConfiguration.Read.All | SearchConfiguration.ReadWrite.All |
HTTP request
GET /search/qnas
Optional query parameters
This method supports the select
, expand
, filter
, orderBy
, maxTop
, and count
OData query parameters to help customize the response.
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a collection of microsoft.graph.search.qna objects in the response body.
Examples
Request
The following example shows a request.
GET https://graph.microsoft.com/v1.0/search/qnas
Response
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
[
{
"id": "733b26d5-af76-4eea-ac69-1a0ce8716897",
"displayName": "Global Country Holidays",
"webUrl": "http://www.contoso.com/",
"description": "The dates that Contoso offices will be closed to observe holidays. These dates may differ from the actual date of the holiday in cases where the holiday falls on a weekend. <table> <thead> <tr> <td><strong>2021 Dates</strong></td> <td><strong>Holiday</strong></td> </tr> </thead> <tbody> <tr> <td>January 1, 2021</td> <td>New Year's Day</td> </tr> <tr> <td>January 18, 2021</td> <td>Martin Luther King Day</td> </tr> <tr> <td>February 15, 2021</td> <td>Presidents Day</td> </tr> <tr> <td>May 31, 2021</td> <td>Memorial Day</td> </tr> <tr> <td>July 5, 2021</td> <td>Independence Day</td> </tr> <tr> <td>September 6, 2021</td> <td>Labor Day</td> </tr> <tr> <td>November 25, 2021 - November 26, 2021</td> <td>Thanksgiving Day and Day after Thanksgiving</td> </tr> <tr> <td>December 23, 2021 - December 24, 2021</td> <td>Christmas Eve and Christmas Day</td> </tr> </tbody> </table>",
"lastModifiedDateTime": "2016-03-21T20:01:37Z",
"lastModifiedBy": {
"user": {
"id": "efee1b77-fb3b-4f65-99d6-274c11914d12",
"displayName": "Amalie Larsen"
}
},
"keywords": {
"keywords": ["new years day", "martin luther king day", "presidents day", "memorial day", "independence day", "labor day", "thanksgiving", "christmas"],
"reservedKeywords": ["holidays", "paid days off"],
"matchSimilarKeywords": true
},
"availabilityStartDateTime": "2020-09-21T20:01:37Z",
"availabilityEndDateTime": "2021-12-31T20:01:37Z",
"languageTags": ["en-us"],
"platforms": ["ios"],
"groupIds": ["groupId"],
"targetedVariations": null,
"state": "published"
}
]