List Properties
/api/external/v2/deals/{deal_id}/propertiesList properties associated with a deal
Response (200):
{
"request_id": "...",
"timestamp": "2026-03-20T15:30:45Z",
"data": [
{
"id": 301,
"name": "123 Main Street",
"address": "123 Main St",
"city": "New York",
"state": "NY",
"zip": "10001",
"asset_type_id": 5,
"units": 50,
"square_footage": 45000.0,
"year_built": 1985
}
]
}unauthorizedAuthentication required— Missing or invalid Authorization header
not_foundDeal not found— The deal_id doesn't exist or isn't accessible to the authenticated user
Property Object
| Field | Type | Description |
|---|---|---|
id | integer | Property identifier |
name | string|null | Property name |
address | string|null | Street address |
city | string|null | City |
state | string|null | State (2-letter code) |
zip | string|null | ZIP code |
asset_type_id | integer|null | Asset type ID |
units | integer|null | Number of units |
square_footage | number|null | Total square footage |
year_built | integer|null | Year the property was built |