Skip to content

Latest commit

 

History

History
142 lines (103 loc) · 4.46 KB

conversationmember-get.md

File metadata and controls

142 lines (103 loc) · 4.46 KB
title description author ms.localizationpriority ms.subservice doc_type
Get conversationMember
Get member of chat or channel.
akjo
high
teams
apiPageType

Get conversationMember

Namespace: microsoft.graph

Retrieve a conversationMember from a chat or channel.

[!INCLUDE national-cloud-support]

Permissions

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) For user or chat resource: Chat.ReadBasic, Chat.Read, Chat.ReadWrite

For channel resource: ChannelMember.Read.All, ChannelMember.ReadWrite
Delegated (personal Microsoft account) Not supported.
Application For user or chat resource: Not supported.

For channel resource: TeamMember.Read.Group, ChannelMember.Read.All, ChannelMember.ReadWrite.All

Note

The TeamMember.Read.Group permmission uses resource-specific consent.

HTTP request

GET /chats/{id}/members/{id}
GET /teams/{id}/channels/{id}/members/{id}

Optional query parameters

This operation doesn't support the OData query parameters to customize the response.

Request headers

Header Value
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 conversationMember object in the response body.

Example

Request

The following example shows a request.

GET https://graph.microsoft.com/v1.0/chats/{id}/members/{id}

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]

[!INCLUDE sample-code] [!INCLUDE sdk-documentation]


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": "id-value",
  "displayName": "display-name-value"
}