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

# Update Room

Updates details for a room, by the room ID.

<Note>
  External Documentation

  To learn more, visit the [Cisco Webex documentation](https://developer.webex.com/docs/api/v1/rooms/update-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.                           |
  | Room ID     | The ID of the room to update. Can be retrieved from the `List Rooms` action.                                                                                                                  |
  | Team ID     | The ID for the team with which this room is associated. Can be retrieved from the `List Teams` action. Only unowned rooms can be assigned to a team. Assignment between teams is unsupported. |
  | Title       | A user-friendly name for the room.                                                                                                                                                            |
</div>

## Example Output

```json theme={"dark"}
{
	"id": "<string>",
	"title": "<string>",
	"type": "<string>",
	"isLocked": false,
	"lastActivity": "2015-07-16T23:47:19.836Z",
	"creatorId": "<string>",
	"created": "2019-09-10T11:44:02.089Z",
	"ownerId": "<string>",
	"description": "<string>",
	"isPublic": false,
	"isReadOnly": false
}
```

## Workflow Library Example

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