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

Creates a room. The authenticated user is automatically added as a member of the room.
To create a 1:1 room, use the Create Messages endpoint to send a message directly to another person by using the `To Person Mail` parameter.

<Note>
  External Documentation

  To learn more, visit the [Cisco Webex documentation](https://developer.webex.com/docs/api/v1/rooms/create-a-room).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter   | Description                                                                                                                                                         |
  | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Description | The description of the room.                                                                                                                                        |
  | Is Locked   | Set the room as locked and the creator becomes a moderator.                                                                                                         |
  | Is Public   | If set to `True` the room is public and therefore discoverable within the org. Anyone can find and join that room. When `True` the `description` must be filled in. |
  | Team ID     | The ID for the team with which this room is associated. Can be retrieved from the `List Teams` action.                                                              |
  | Title       | A user-friendly name for the room.                                                                                                                                  |
</div>

## Example Output

```json theme={"dark"}
{
	"id": "<string>",
	"title": "<string>",
	"type": "<string>",
	"isLocked": false,
	"lastActivity": "2020-08-01T09:57:09.621Z",
	"creatorId": "<string>",
	"created": "2010-09-25T08:32:49.112Z",
	"ownerId": "<string>",
	"description": "<string>",
	"isPublic": false
}
```

## Workflow Library Example

[Create Room with Cisco Webex and Send Results Via Email](https://library.blinkops.com/workflows/create-room-with-cisco-webex-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-room-with-cisco-webex-and-send-results-via-email/canvas" />
</div>
