rfctl contacts get#

Get detailed information about a specific contact.

Synopsis#

rfctl contacts get <id>

Arguments#

ArgumentDescription
idThe contact ID (required)

Examples#

rfctl contacts get 1

Output#

Returns JSON with the contact details:

{
  "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,
  "created_at": "2024-01-15T10:30:00Z"
}

Errors#

If the contact is not found:

Contact not found: 1