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

# Affinity: V2 Lists List ID Saved Views View ID List

> Get all List Entries on a Saved View. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

Get all List Entries on a Saved View.

<Info>
  Tool ID: `affinity_v2_lists_list_id_saved_views_view_id_list_entries_get`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'affinity_v2_lists_list_id_saved_views_view_id_list_entries_get',
  {
    "listId": 123,
    "viewId": 123
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute affinity_v2_lists_list_id_saved_views_view_id_list_entries_get --input '{
  "listId": 123,
  "viewId": 123
}' --json
```

## Example response

The static output schema is not detailed enough to generate a reliable example. Use `deepline tools get affinity_v2_lists_list_id_saved_views_view_id_list_entries_get --json` for the complete live contract.

## Input reference

Paginate through the List Entries (AKA rows) on a given Saved View. Use this endpoint when you need to filter entities or only want **some** field data to be returned: This endpoint respects the filters set on a Saved View via web app, and only returns field data corresponding to the columns that have been pulled into the Saved View via web app. Though this endpoint respects the Saved View's filters and column/Field selection, it does not yet preserve sort order. This endpoint also only supports **sheet-type Saved Views**, and not board- or dashboard-type Saved Views. See the [Data Model](/docs/pages/data-model/the-basics) section for more information about Saved Views. Requires the "Export data from Lists" [permission](/docs/pages/external-api-v2/permissions).

| Name             | Type      | Required | Default | Details                                                                           |
| ---------------- | --------- | -------- | ------- | --------------------------------------------------------------------------------- |
| `payload.listId` | `integer` | Yes      | —       | List ID Format: `int64`. Minimum: 1. Maximum: 9007199254740991.                   |
| `payload.viewId` | `integer` | Yes      | —       | Saved view ID Format: `int64`. Minimum: 1. Maximum: 9007199254740991.             |
| `payload.cursor` | `string`  | No       | —       | Cursor for the next or previous page                                              |
| `payload.limit`  | `integer` | No       | `100`   | Number of items to include in the page Format: `int32`. Minimum: 1. Maximum: 100. |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Paginate through the List Entries (AKA rows) on a given Saved View. Use this endpoint when you need to filter entities or only want **some** field data to be returned: This endpoint respects the filters set on a Saved View via web app, and only returns field data corresponding to the columns that have been pulled into the Saved View via web app. Though this endpoint respects the Saved View's filters and column/Field selection, it does not yet preserve sort order. This endpoint also only supports **sheet-type Saved Views**, and not board- or dashboard-type Saved Views. See the [Data Model](/pages/data-model/the-basics) section for more information about Saved Views. Requires the \"Export data from Lists\" [permission](/pages/external-api-v2/permissions).",
    "properties": {
      "listId": {
        "type": "integer",
        "description": "List ID",
        "minimum": 1,
        "maximum": 9007199254740991,
        "format": "int64"
      },
      "viewId": {
        "type": "integer",
        "description": "Saved view ID",
        "minimum": 1,
        "maximum": 9007199254740991,
        "format": "int64"
      },
      "cursor": {
        "type": "string",
        "description": "Cursor for the next or previous page"
      },
      "limit": {
        "type": "integer",
        "description": "Number of items to include in the page",
        "default": 100,
        "minimum": 1,
        "maximum": 100,
        "format": "int32"
      }
    },
    "required": [
      "listId",
      "viewId"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

| Name                                                                  | Type                                                                          | Required | Default | Details                                                 |
| --------------------------------------------------------------------- | ----------------------------------------------------------------------------- | -------- | ------- | ------------------------------------------------------- |
| `result.data`                                                         | `object`                                                                      | Yes      | —       | —                                                       |
| `result.data.data`                                                    | `array \| null`                                                               | Yes      | —       | Maximum items: 100.                                     |
| `result.data.data[].id`                                               | `integer`                                                                     | Yes      | —       | Format: `int64`. Minimum: 1. Maximum: 9007199254740991. |
| `result.data.data[].type`                                             | `"company"`                                                                   | Yes      | —       | —                                                       |
| `result.data.data[].listId`                                           | `integer`                                                                     | Yes      | —       | Format: `int64`. Minimum: 1. Maximum: 9007199254740991. |
| `result.data.data[].createdAt`                                        | `string`                                                                      | Yes      | —       | Format: `date-time`.                                    |
| `result.data.data[].creatorId`                                        | `integer \| null`                                                             | Yes      | —       | Format: `int64`. Minimum: 1. Maximum: 9007199254740991. |
| `result.data.data[].entity`                                           | `object`                                                                      | Yes      | —       | —                                                       |
| `result.data.data[].entity.id`                                        | `integer`                                                                     | Yes      | —       | —                                                       |
| `result.data.data[].entity.name`                                      | `string`                                                                      | Yes      | —       | —                                                       |
| `result.data.data[].entity.domain`                                    | `string \| null`                                                              | Yes      | —       | —                                                       |
| `result.data.data[].entity.domains`                                   | `array`                                                                       | Yes      | —       | —                                                       |
| `result.data.data[].entity.isGlobal`                                  | `boolean`                                                                     | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields`                                    | `array`                                                                       | No       | —       | —                                                       |
| `result.data.data[].entity.fields[].id`                               | `string`                                                                      | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].name`                             | `string`                                                                      | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].type`                             | `"enriched" \| "global" \| "list" \| "relationship-intelligence" \| "hidden"` | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].enrichmentSource`                 | `"affinity-data" \| "dealroom" \| "eventbrite" \| "mailchimp" \| null`        | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].value`                            | `object`                                                                      | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].value.type`                       | `"company-multi"`                                                             | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].value.data`                       | `array \| null`                                                               | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].value.data[].id`                  | `integer`                                                                     | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].value.data[].name`                | `string`                                                                      | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].value.data[].domain`              | `string \| null`                                                              | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].value.totalCount`                 | `integer`                                                                     | No       | —       | —                                                       |
| `result.data.data[].entity.fields[].value.data[].dropdownOptionId`    | `integer`                                                                     | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].value.data[].text`                | `string`                                                                      | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].value.data[].streetAddress`       | `string \| null`                                                              | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].value.data[].city`                | `string \| null`                                                              | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].value.data[].state`               | `string \| null`                                                              | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].value.data[].country`             | `string \| null`                                                              | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].value.data[].continent`           | `string \| null`                                                              | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].value.data[].firstName`           | `string \| null`                                                              | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].value.data[].lastName`            | `string \| null`                                                              | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].value.data[].primaryEmailAddress` | `string \| null`                                                              | Yes      | —       | —                                                       |
| `result.data.data[].entity.fields[].value.data[].type`                | `"internal" \| "collaborator" \| "external"`                                  | Yes      | —       | —                                                       |
| `result.data.data[].entity.listId`                                    | `integer`                                                                     | Yes      | —       | —                                                       |
| `result.data.data[].entity.isRestricted`                              | `boolean`                                                                     | Yes      | —       | —                                                       |
| `result.data.data[].entity.isRedacted`                                | `boolean`                                                                     | Yes      | —       | —                                                       |
| `result.data.data[].entity.firstName`                                 | `string`                                                                      | Yes      | —       | —                                                       |
| `result.data.data[].entity.lastName`                                  | `string \| null`                                                              | Yes      | —       | —                                                       |
| `result.data.data[].entity.primaryEmailAddress`                       | `string \| null`                                                              | Yes      | —       | —                                                       |
| `result.data.data[].entity.emailAddresses`                            | `array`                                                                       | Yes      | —       | —                                                       |
| `result.data.data[].entity.type`                                      | `"internal" \| "external"`                                                    | Yes      | —       | —                                                       |
| `result.data.pagination`                                              | `object`                                                                      | Yes      | —       | —                                                       |
| `result.data.pagination.prevUrl`                                      | `string \| null`                                                              | No       | —       | Format: `uri`.                                          |
| `result.data.pagination.nextUrl`                                      | `string \| null`                                                              | No       | —       | Format: `uri`.                                          |
| `result.meta`                                                         | `object`                                                                      | No       | —       | —                                                       |

<Info>
  This output schema is too large to embed without slowing the page. Get the complete live contract with `deepline tools get affinity_v2_lists_list_id_saved_views_view_id_list_entries_get --json`.
</Info>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.

## Related documentation

* [Affinity provider guide](/docs/providers/affinity/guide)
* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
