OpenHouse
Get a list of open houses
get/odata/v1/OpenHouse
Query parameters
$selectstring
Selects which properties to include in the response.
$countboolean
Return, along with the results, the total number of records in the dataset. NOTE: There is a performance cost with this query option.
$filterstring
Filters the results, based on a Boolean condition.
$topstring
Returns only the first n results.
$skipstring
Skips the first n results.
$orderbystring
Sorts the results.
Response
OK
Example response
{
"@odata.context": "https://localhost:7051/odata/v1/$metadata#DDF.Core.Entities.OpenHouse",
"value": [
{
"OpenHouseKey": "12345",
"ListingKey": "12345",
"ListingId": "1",
"OpenHouseDate": "2021-01-01",
"OpenHouseStartTime": "12:00:00.00",
"OpenHouseEndTime": "12:00:00.00",
"OpenHouseRemarks": "OpenHouseRemarks",
"OpenHouseType": "Public",
"OpenHouseStatus": "Active",
"LivestreamOpenHouseURL": "\"https://www.youtube.com/watch?v=i-09UtAH10A\""
}
],
"@odata.nextLink": "https://localhost:7051/odata/v1/DDF.Core.Entities.OpenHouse?skip=1"
}