New Feature
Date Filtering for Property Details
We’ve added optional date filtering to the GET /property/{id} endpoint, allowing you to filter units, history, availability periods, and concessions based on a date range.
New Query Parameters:
from(optional): Filter results to include only data that overlaps with dates on or after this date (ISO 8601 format, e.g., “2024-01-01”)to(optional): Filter results to include only data that overlaps with dates on or before this date (ISO 8601 format, e.g., “2024-12-31”)
What Gets Filtered:
- Units: Filtered based on
enter_marketandexit_marketdates - History: Filtered based on
from_dateandto_dateof each history entry - Availability Periods: Filtered based on
enter_marketandexit_marketdates - Concessions: Filtered based on
from_dateandto_dateof each concession
Usage: You can provide either date, both dates, or neither. When dates are provided, only data that overlaps with the specified date range will be included in the response.
Example Requests:
This feature is particularly useful when you need to analyze property data for a specific time period or when generating reports for a particular date range.