Path Parameters
The ID of the unit to update
Must be “application/json”
Body
Number of rooms (minimum 1)
Usage type (residential_families, residential_singles)
Type of unit (apartment, floor, villa, building, tower, duplex, studio, secondary_apartment, apartment_extension, floor_extension, penthouse_villa, drivers_room, land_lot, other)
Number of bedrooms [0-10]
Number of full bathrooms [0-10]
curl --request PUT \
--url /tenant/v1/units/2 \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {access_token}' \
--data '{
"unit_number": "A-0005",
"floor_number": 1,
"rooms": 1,
"unit_usage": "residential_families",
"unit_type": "apartment",
"area": 200,
"amenities_bedrooms": 3,
"amenities_bathrooms_full": 2
}'