# Get all unit types Fetch a list of all unit types within the Property Management System (PMS). This endpoint is useful for retrieving detailed information about unit types, including their classification and characteristics such as size, layout, amenities, and occupancy capacity. The response includes a paginated list of unit types, which can be used for inventory management, pricing strategies, availability searches, and reporting. If no unit types are found, an empty list will be returned. In case of an unexpected system error, a will be triggered. Endpoint: GET /api/v3/unitTypes Version: 3.0.4 Security: OAuth2 ## Query parameters: - `unitTypeName` (string) The name of the unit type - `buildingName` (string) The name of the building - `buildingId` (integer) The ID of the building - `developmentName` (string) The name of the development - `developmentId` (integer) The ID of the development ## Response 200 fields (application/json): - `content` (array) - `content.id` (integer) ID of the Unit Type - `content.buildingId` (integer) ID of the Building - `content.buildingName` (string) Name of the Building - `content.developmentId` (integer) ID of the Development - `content.developmentName` (string) Name of the Development - `content.unitTypeName` (string) Name of the Unit Type - `page` (object) - `page.size` (integer) - `page.totalElements` (integer) - `page.totalPages` (integer) - `page.number` (integer)