requestedShowing
The user requested a showing for a listing.
The user requested a showing for a listing.
| Field | Type | Required | Description |
|---|---|---|---|
form | realEstateForm | Yes | The form data the user submitted |
requestedDateTime | timestamp | Yes | The date and time the user wishes to visit the listing (ISO 8601 String) |
1/* requestedShowing example */23// Note that Date.toISOString returns a UTC time, so if the below code4// is run in the Eastern time zone, you will get "2015-12-10T21:30:00.000Z"56var requestedDate = new Date("12/10/2015 16:30");7requestedDate = requestedData.toISOString();89var data = {10 "form": form,11 "requestedDateTime": requestedDate12};1314brytescore( "realestate.requestedShowing", data );
Updated July 25, 2026