> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Add Member To Channel

Add a member to a channel. This operation is allowed only for channels with a membershipType value of private.

* **Least Privileged** Microsoft Graph permission to access the action via **App Registration**: `ChannelMember.ReadWrite.All`.

<Note>
  External Documentation

  To learn more, visit the [Microsoft Teams documentation](https://learn.microsoft.com/en-us/graph/api/channel-post-members?view=graph-rest-1.0\&tabs=http).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter  | Description                                                                                    |
  | ---------- | ---------------------------------------------------------------------------------------------- |
  | Channel ID | The ID of the channel.<br /><br />Can be obtained by using the `List Channels` action.         |
  | Member     | The ID or email of the member to add to the channel.                                           |
  | Role       | The role for the member.                                                                       |
  | Team ID    | The ID of the channel's team.<br /><br />Can be obtained by using the `List All Teams` action. |
</div>

## Example Output

```json theme={"dark"}
{
	"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#teams('ece6f0a1-7ca4-498b-be79-edf6c8fc4d82')/channels('19%3A56eb04e133944cf69e603c5dac2d292e%40thread.skype')/members/microsoft.graph.aadUserConversationMember/$entity",
	"@odata.type": "#microsoft.graph.aadUserConversationMember",
	"id": "ZWUwZjVhZTItOGJjNi00YWU1LTg0NjYtN2RhZWViYmZhMDYyIyM3Mzc2MWYwNi0yYWM5LTQ2OWMtOWYxMC0yNzlhOGNjMjY3Zjk=",
	"roles": [],
	"displayName": "John Doe",
	"userId": "8b081ef6-4792-4def-b2c9-c363a1bf41d5",
	"email": null
}
```

## Workflow Library Example

[Add Member to Channel with Microsoft Teams and Send Results Via Email](https://library.blinkops.com/workflows/add-member-to-channel-with-microsoft-teams-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/add-member-to-channel-with-microsoft-teams-and-send-results-via-email/canvas" />
</div>
