Contacts Commands#
Manage contacts in the RecordForm CRM.
Synopsis#
rfctl contacts <command> [flags]Aliases#
contact
Available Commands#
| Command | Description |
|---|---|
| list | List contacts |
| get | Get a contact by ID |
| create | Create a new contact |
| update | Update a contact |
| delete | Delete a contact |
Examples#
# List all contacts
rfctl contacts list
# Search for contacts
rfctl contacts list --search "John"
# Get contact details
rfctl contacts get 1
# Create a new contact
rfctl contacts create --org 1 --first-name "John" --last-name "Doe" --email "john@example.com"