> ## 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 A Meeting

Create an online meeting that requires a password on behalf of a user.
The password is automatically generated in the response.

**Please note that this action is supported only for the delegated (OAuth) method**.

<Note>
  External Documentation

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

## Parameters

<div className="integrations-table">
  | Parameter          | Description                                                                                                                                |
  | ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ |
  | Meeting End Time   | The date and the time of the end of the meeting.                                                                                           |
  | Meeting Start Time | The date and the time of the start of the meeting.                                                                                         |
  | Require Password   | Choose if joining the meeting requires a password.<br />If is set to `true`, the password will be automatically generated in the response. |
  | Subject            | The subject of the meeting.                                                                                                                |
</div>

## Example Output

```json theme={"dark"}
{
	"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users('f4086-17cc-42e7-85f4-f03880d6')/onlineMeetings/$entity",
	"audioConferencing": {
		"tollNumber": "+12525478",
		"tollFreeNumber": "+18690588",
		"ConferenceId": "2999",
		"dialinUrl": "https://dialin.teams.microsoft.com/22fa0-499f-435b-bc69-b8dea330?id=2999"
	},
	"chatInfo": {
		"threadId": "19%3A3b523985568b776357c1dd79%40thread.skype",
		"messageId": "15629053",
		"replyChainMessageId": null
	},
	"creationDateTime": "2019-07-11T02:17:17.6491364Z",
	"startDateTime": "2019-07-11T02:17:17.6491364Z",
	"endDateTime": "2019-07-11T02:47:17.651138Z",
	"id": "MSpkYzE3Njc0Yy04MWQ5LTRhFpHRTNaR1F6WGhyZWFkLnYy",
	"joinWebUrl": "https://teams.microsoft.com/l/meetup-join/19%3ameeting_M2IzYzczNTItYmY3iMjNlOTY4MGEz%40thread.skype/0?context=%7b%22Tid%22%3a%22f8bf-86f1-41af-91ab-2011db47%22%2c%22Oid%22%3a%20fae72-d251-43ec-86c-377304f%22%7d",
	"participants": {
		"organizer": {
			"identity": {
				"user": {
					"id": "5e72-d251-43ec-868c-3732704f",
					"tenantId": "72fbf-86f1-41af-91ab-2d71db47",
					"displayName": "Mario Rogers"
				}
			},
			"role": "presenter",
			"upn": "upn-value"
		}
	},
	"subject": "User meeting",
	"joinMeetingIdSettings": {
		"isPasscodeRequired": true,
		"joinMeetingId": "1234567890",
		"passcode": "123abc"
	}
}
```

## Workflow Library Example

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