# getUserAppIds

Retrieves the App IDs associated with a specific user.

### Usage

```ts
const user = '0x...';
const appIds = await chat.getUserAppIds(user);
```

### Returns

`Promise<AppId[]>`

A promise that resolves to an array of App IDs associated with the specified user.

### Parameters

#### user

* **Type** `Address`

The user's address for which the App IDs are being fetched.
