> ## Documentation Index
> Fetch the complete documentation index at: https://docs.clustr-ai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Saved View Members

> Who's in a view right now, with the facts a Workflow acts on

Runs the view's stored filters through the exact query the table itself
uses, so this is never a different answer than opening the view in the app.
This is what a [Workflow](/workflows) reads to decide who entered or left.

<Note>
  **A member's facts carry `tags` and `tagIds`, not `status`.** A former status
  is one of those [tags](/tags): the names are in `tags`, and the ids a
  Workflow acts on are in `tagIds`.
</Note>

<Note>
  **A view saved before `memberQuery` existed returns a 409.** Re-save the
  view from the app, or call [Update Saved
  View](/api-reference/update-saved-view) with a `memberQuery`, then retry.
</Note>

## Path Parameters

<ParamField path="id" type="string" required>
  The view's id.
</ParamField>

## Query Parameters

<ParamField query="page" type="integer" default="1">
  Page number.
</ParamField>

<ParamField query="pageSize" type="integer" default="500">
  Capped at 500 for a people view, 200 for an accounts view.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.clustr-ai.com/api/public/saved-views/3e5f1a22-.../members?pageSize=100" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "entity": "accounts",
      "total": 42,
      "page": 1,
      "pageSize": 100,
      "hasMore": false,
      "members": [
        {
          "key": "1035",
          "facts": {
            "name": "Acme Corp",
            "domain": "acme.com",
            "companyId": "9c4d5e6f-...",
            "fitGrade": "A+",
            "temperature": "burning",
            "tier": "Tier 1",
            "tags": ["Contacted", "Enterprise"],
            "tagIds": ["8f652e61-edfa-4a8c-8763-cc4902dd386b", "7f3e1a22-0c5d-4c1e-9f8a-2b4d6e8f0a12"],
            "ownerEmail": "alice@yourco.com",
            "dealStage": "Negotiation",
            "hasOpenDeal": true,
            "bestStrength": 0.82,
            "connectorCount": 3,
            "accountUrl": "/accounts/1035"
          }
        }
      ]
    }
  }
  ```

  ```json 409 theme={null}
  {
    "success": false,
    "error": { "message": "view has no member query; re-save it", "code": "CONFLICT" }
  }
  ```
</ResponseExample>
