> ## 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.

# Create Chat

Add a new member to a team.

* **Least Privileged** Microsoft Graph permission to access the action via **App Registration**: `Chat.Create`.

<Note>
  External Documentation

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

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                                              |
  | --------- | ---------------------------------------------------------------------------------------- |
  | Chat Type | Specifies the type of chat.                                                              |
  | Members   | The IDs or emails of the members of the chat, comma separated.                           |
  | Topic     | The title of the chat. The chat title can be provided only if the chat is of group type. |
</div>

## Example Output

```json theme={"dark"}
{
	"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#chats/$entity",
	"id": "19:82fe7758-5bb3-4f0d-a43f-e555fd399c6f_8c0a1a67-50ce-4114-bb6c-da9c5dbcf6ca@unq.gbl.spaces",
	"topic": null,
	"createdDateTime": "2020-12-04T23:10:28.51Z",
	"lastUpdatedDateTime": "2020-12-04T23:10:28.51Z",
	"chatType": "oneOnOne",
	"webUrl": "<string>",
	"tenantId": "<string>",
	"isHiddenForAllMembers": false,
	"viewpoint": null,
	"onlineMeetingInfo": null
}
```

## Workflow Library Example

[Create Chat with Microsoft Teams and Send Results Via Email](https://library.blinkops.com/workflows/create-chat-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/create-chat-with-microsoft-teams-and-send-results-via-email/canvas" />
</div>
