qobrix_get_contact
Fetch a contact by UUID to view full details like name, email, phone, and associated users, languages, and organizations.
Instructions
Get a single contact by UUID — the person/company detail view in the Lead-Contact Lifecycle. Returns { data: { id, first_name, last_name, email, phone, ... } }. Verified include: AssignedToUsers (RESO OwnerMember), User, Language, Organizations. To build the full contact journey (canonical 360° view): 1. Leads: qobrix_search_opportunities with contact_name == '' 2. Tasks: qobrix_search_tasks with contact == '' 3. Calls: qobrix_search_calls (search by contact FK) 4. Meetings: qobrix_search_meetings (search by contact FK) 5. Seller listings: qobrix_search_properties with seller == '' This contact 360° pattern is the core of Lead-Contact Lifecycle and Follow-up workflows.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Contact UUID | |
| include | No | Associations to expand. Verified options: AssignedToUsers, User, Language, Organizations |