---
title: "IntegrationMemberPreview"
description: "The `IntegrationMemberPreview` entity."
section: "Reference"
group: "Types"
order: 136
---

## Definition

```ts
interface IntegrationMemberPreview {
  entityId: string;
  entityType: string;
  name: string | null;
}
```

## Fields

| Field        | Type             | Notes                                                          |
| ------------ | ---------------- | -------------------------------------------------------------- |
| `entityId`   | `string`         | `required` — Prefixed entity ID of the member.                 |
| `entityType` | `string`         | `required` — Resolved entity type (function, tool, schema, …). |
| `name`       | `string \| null` | `required` — Resolved display name; null if not resolvable.    |
