***

title: joinRoom
slug: /reference/typescript/agents/function-result/join-room
description: Join a SignalWire room for multi-party communication.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

[functionresult]: /docs/server-sdks/reference/typescript/agents/function-result

Join a SignalWire room. Rooms enable multi-party communication and
collaboration between participants.

## **Parameters**

<ParamField path="name" type="string" required={true} toc={true}>
  Name of the room to join.
</ParamField>

## **Returns**

[`FunctionResult`][functionresult] -- `this`, for chaining.

## **Example**

```typescript {4}
import { FunctionResult } from '@signalwire/sdk';

const result = new FunctionResult()
  .joinRoom('support-room');
```