realEstateForm Object
A user-submitted data entry form.
A user-submitted data entry form. Contains properties for common real estate form fields.
| Field | Type | Required | Description |
|---|---|---|---|
agentName | string | No | The name of the sender's agent |
fromEmail | No | The email address of the sender | |
fromName | string | No | The name of the sender |
fromTelephonetelephone | No | The telephone number(s) of the sender | |
isPrequalified | boolean | No | The sender is prequalified for a mortgage |
isWorkingWithAgent | boolean | No | The sender is working with an agent |
message | string | No | The contents of the message provided by the sender |
name | string | No | The name of the form (ex: contact, about, etc) |
relatedListing | listing | No | The listing related to this form submission |
subject | string | No | The subject of the form or email |
toEmail | No | The email address of the person to which the form was sent | |
toName | string | No | The name of the person to which the form was sent |
1/* realEstateForm example */23var listing = {4 "price": 349000,5 "mlsId": "2983599"6 ...7};89var form = {10 "fromEmail": "frank@fllngwtr.com",11 "fromName": "Frank Wright",12 "fromTelephone": {13 "mobile": "555.867.5309"14 },15 "isPreQualified": false,16 "isWorkingWithAgent": false,17 "message": "Hi, I need an agent to sell my historic home in Pennsylvania.",18 "name": "agent-contact-form",19 "subject": "Looking for an agent",20 "toEmail": "agent@yourcompany.com",21 "toName": "Suzie Agent",22 "relatedListing": listing23};
Updated July 25, 2026