Get conversationMember

Namespace: microsoft.graph

Retrieve a conversationMember from a chat or channel.

This API is available in the following national cloud deployments.

Global service US Government L4 US Government L5 (DOD) China operated by 21Vianet

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}

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"
}