Contacts Commands#

Manage contacts in the RecordForm CRM.

Synopsis#

rfctl contacts <command> [flags]

Aliases#

  • contact

Available Commands#

CommandDescription
listList contacts
getGet a contact by ID
createCreate a new contact
updateUpdate a contact
deleteDelete 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"