missive_list_contacts
Retrieve contacts from a Missive contact book with search, sorting, and pagination options. Filter by modification date or include deleted contacts when needed.
Instructions
List contacts in a contact book. Requires contact_book (or MISSIVE_DEFAULT_CONTACT_BOOK). Supports search, order, limit (max 200), offset, modified_since, and include_deleted. Read-only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of contacts to return. Default 50, max 200. | |
| order | No | Sort order: 'last_name' (default) or 'last_modified' (most recently updated first). | last_name |
| offset | No | Offset for pagination (default 0). | |
| search | No | Text filter matched against all contact infos (name, email, phone, organization, custom fields, notes, etc.). | |
| contact_book | No | Contact book UUID to list from. Falls back to MISSIVE_DEFAULT_CONTACT_BOOK; required (errors if neither is set). | |
| modified_since | No | Unix epoch seconds; return only contacts created/modified since this time. | |
| include_deleted | No | When used with `modified_since`, include deleted contacts (they return only id, deleted, and modified_at). Default false. |