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

# getMemberMeta

> getMemberMeta method for the RoomSession class.

### getMemberMeta

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

Returns the metadata assigned to the specified member.

#### Parameters

Object containing the parameters of the method.

Id of the member for which to obtain the metadata. If omitted, refers to the current member.

#### Returns

`Promise<{ meta: Object }>`

#### Example

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