Getting property details
In order to get the details of a property, you'll need to use the Properties.GetPropertyDetailsAsync method on the API
client:
var property = await client.Properties.GetPropertyDetailsAsync(12345);
The above example will return the details of the property with ID 12345.
If the property doesn't exist, or you don't have access to it, a null value will be returned.
The response will be a PropertyDetails object,
and will contain the following properties:
Id
- Type:
int - Description: Gets or sets the ID of the property.
- Type:
BranchId
- Type:
int - Description: The Branch Id of the property.
- Type:
Address
- Type:
PropertyAddress - Description: Gets or sets the address of the property.
- Type:
LastUpdated
- Type:
DateTimeOffset - Description: Gets or sets the last updated date of the property.
- Type:
Status
- Type:
PropertyStatus - Description: Gets or sets the property status.
- Type:
Price
- Type:
decimal - Description: Gets or sets the price of the property.
- Type:
Description
- Type:
string - Description: Gets or sets the description of the property.
- Type:
ParkingType
- Type:
ParkingType - Description: Gets or sets the parking type of the property.
- Type:
PropertyType
- Type:
ApiPropertyType - Description: Gets the property type of the property.
- Type:
Residential
- Type:
ResidentialPropertyDetails? - Description: Gets or sets the details specific to a residential property.
- Type:
Commercial
- Type:
CommercialPropertyDetails? - Description: Gets or sets the details specific to a commercial property.
- Type:
Auction
- Type:
AuctionDetails? - Description: Gets or sets the auction details specific to a property if there are any.
- Type: