qobrix_get_property
Fetch a property's complete record by UUID. Optionally expand related entities like viewings, opportunities, agents, and sellers for a full listing overview.
Instructions
Get a single property by UUID — the listing detail view in the Listing Lifecycle. Returns { data: { id, name, status, ... } }. RESO StandardStatus: 'available' = Active, 'reserved' = Pending, 'sold' = Closed, 'withdrawn' = Withdrawn. Use include[] to expand related entities inline: Verified: Agents, PropertyTypes, PropertySubtypes, PropertyViewings, Opportunities, Translations, SalespersonUsers, CreatedByUsers, LocationLocations, AgentAgents, SellerContacts, ProjectProjects. Workflow tips: include=['PropertyViewings'] → see showing history (Showing Lifecycle). include=['Opportunities'] → see interested leads (Sales Pipeline). include=['AgentAgents'] → listing agent (RESO ListAgent). include=['SellerContacts'] → seller/owner (RESO OwnerMember). FK fields: agent → Agents, seller → Contacts, project → Projects, salesperson → Users.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Property UUID | |
| expand | No | Expand FK references into full nested objects. Default false (FKs stay as UUID strings). Prefer include[] for surgical expansion of specific associations. | |
| include | No | Associations to expand. Verified options: PropertyTypes, PropertySubtypes, Agents, Opportunities, PropertyViewings, Translations, SalespersonUsers, CreatedByUsers, LocationLocations, AgentAgents, SellerContacts, ProjectProjects |