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

# getMeta

> getMeta method for the RoomSession class.

### getMeta

* **getMeta**(): `Promise<{ meta`: `Object` }>

Returns the metadata assigned to this Room Session.

#### Returns

`Promise<{ meta: Object }>`

#### Example

```javascript
const { meta } = await roomSession.getMeta();
console.log(meta);
```