List people
twenty_list_peopleList/filter people (contacts). Supports cursor pagination, raw filter/order_by, and relation depth. Twenty REST: GET /rest/people.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| depth | No | How deep to hydrate related records: 0, 1, or 2. | |
| limit | No | Results per page (1-60, default 20 — Twenty caps at 60). | |
| filter | No | Raw Twenty filter string, passed verbatim as ?filter=. Syntax: field[comparator]:value, e.g. `employees[gte]:100` or `stage[eq]:"MEETING"`. Comparators: eq, neq, gt, gte, lt, lte, in, is, like, ilike, startsWith. | |
| order_by | No | Raw Twenty ordering string, passed verbatim as ?order_by=, e.g. `createdAt[DescNullsLast]`. | |
| ending_before | No | Pagination cursor — return records before this cursor (from a previous page's pageInfo). | |
| starting_after | No | Pagination cursor — return records after this cursor (from a previous page's pageInfo). |