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

# sendDigits

> sendDigits method for the RoomSession class.

### sendDigits

* **sendDigits**(`string`): `Promise<void>`

Sends DTMF digits to the room. The digits will be sent to the RoomSession.

#### Parameters

The digits to send. Only the characters `0-9`, `A-D` `*`, and `#` are allowed.

#### Returns

`Promise<void>`

#### Example

```javascript
await roomSession.sendDigits("1");
```