rfctl contacts list#

List all contacts with optional search.

Synopsis#

rfctl contacts list [flags]

Flags#

FlagTypeDescription
--searchstringSearch by name, email, phone, or job title

Examples#

# List all contacts
rfctl contacts list

# Search contacts
rfctl contacts list --search "john"

Output#

Returns JSON array of contacts:

[
  {
    "id": 1,
    "first_name": "John",
    "last_name": "Doe",
    "email": "john.doe@acme.com",
    "phone": "+1-555-0123",
    "job_title": "CTO",
    "is_primary": true,
    "organization_id": 1
  }
]