persons_list
Retrieve a list of persons with filters by owner, organization, name initial, or saved filter. Supports pagination to manage large datasets.
Instructions
List all persons with optional filtering and pagination.
Supports filtering by:
user_id: Filter by owner
org_id: Filter by organization
first_char: Filter by first character of name (single letter)
filter_id: Apply a saved filter
Returns paginated results. Use start/limit for manual pagination.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Field to sort by (e.g., "name", "email") | |
| limit | No | Items per page, max 500 (default: 100) | |
| start | No | Pagination start (default: 0) | |
| org_id | No | Filter by organization ID | |
| user_id | No | Filter by owner user ID | |
| filter_id | No | Filter ID to apply | |
| first_char | No | Filter by first character of name (e.g., "A", "B") |