获取对话Get conversation
重要
Microsoft Graph 中/beta
的版本下的 api 可能会发生更改。APIs under the /beta
version in Microsoft Graph are subject to change. 不支持在生产应用程序中使用这些 API。Use of these APIs in production applications is not supported.
获取 conversation 对象。Get a conversation object.
权限Permissions
要调用此 API,需要以下权限之一。要了解详细信息,包括如何选择权限的信息,请参阅权限。One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
权限类型Permission type | 权限(从最低特权到最高特权)Permissions (from least to most privileged) |
---|---|
委派(工作或学校帐户)Delegated (work or school account) | Group.Read.All、Group.ReadWrite.AllGroup.Read.All, Group.ReadWrite.All |
委派(个人 Microsoft 帐户)Delegated (personal Microsoft account) | 不支持。Not supported. |
应用程序Application | 不支持。Not supported. |
HTTP 请求HTTP request
GET /groups/{id}/conversations/{id}
可选的查询参数Optional query parameters
此方法支持 OData 查询参数 来帮助自定义响应。This method supports the OData Query Parameters to help customize the response.
请求标头Request headers
标头Header | 值Value |
---|---|
AuthorizationAuthorization | Bearer {token}。必需。Bearer {token}. Required. |
请求正文Request body
请勿提供此方法的请求正文。Do not supply a request body for this method.
响应Response
如果成功,此方法在响应正文中返回 200 OK
响应代码和 conversation 对象。If successful, this method returns a 200 OK
response code and a conversation object in the response body.
示例Example
请求Request
下面展示了示例请求。The following is an example of the request.
GET https://graph.microsoft.com/beta/groups/02bd9fd6-8f93-4758-87c3-1fb73740a315/conversations/AAQkAGI5MWY5ZmUyLTJiNzYtNDE0ZC04OWEwLWM3M2FjYmM3NzNlZgAQABuXO3guDWBMpyKF7LsVwfU=
响应Response
下面展示了示例响应。The following is an example of the response.
注意: 为了提高可读性,可能缩短了此处显示的响应对象。所有属性都将通过实际调用返回。Note: The response object shown here might be shortened for readability. All the properties will be returned from an actual call.
HTTP/1.1 200 OK
Content-type: application/json
Content-length: 644
{
"id": "AAQkAGI5MWY5ZmUyLTJiNzYtNDE0ZC04OWEwLWM3M2FjYmM3NzNlZgAQABuXO3guDWBMpyKF7LsVwfU=",
"topic": "New Training Plans",
"hasAttachments": false,
"lastDeliveredDateTime": "2017-07-31T18:59:05Z",
"uniqueSenders": [
"HR Taskforce"
],
"preview": "Meeting to plan new trainings.\r\n\r\n\r\n\r\nJoin Microsoft Teams Online Meeting<https://teams.microsoft.com/l/meetup-join/19%3a900876baa3134907b0dcb41a0d220e31%40thread.skype/1501527539926?tenantId=dcd219dd-bc68-4b9b-bf0b-4a33a796be35>"
}