# Retrieve contracts for a specific unit Fetch a paginated list of contracts associated with a specific unit within the Property Management System (PMS). This endpoint allows property managers to retrieve detailed information about the contracts related to a unit, including contract terms, start and end dates, and associated parties. If no contracts are found for the specified unit ID, an empty page will be returned. Results are paginated to handle large datasets efficiently. Endpoint: GET /api/v3/units/{unitId}/unitContracts Version: 3.0.4 Security: OAuth2 ## Path parameters: - `unitId` (integer, required) Unit ID ## Response 200 fields (application/json): - `content` (array) - `content.id` (integer) - `content.contractType` (string) Enum: "LEASE", "OPERATING" - `content.unitOwner` (object) Company summary associated with the finance account - `content.unitOwner.id` (integer) Unique identifier of the company - `content.unitOwner.companyName` (string) Name of the company - `content.contractEndDate` (string) - `content.bookableFrom` (string) - `content.bookableTo` (string) - `content.notes` (string) - `content.commissionRate` (number) - `content.commissionFee` (number) - `content.commissionFrequency` (string) Enum: "DAILY", "WEEKLY", "MONTHLY", "QUARTERLY", "YEARLY", "PER_BOOKING" - `content.name` (string) - `content.minPriceType` (string) Enum: "DAILY", "WEEKLY", "MONTHLY" - `content.minPrice` (number) - `content.serviceFeeRate` (number) - `content.valid` (boolean) - `page` (object) - `page.size` (integer) - `page.totalElements` (integer) - `page.totalPages` (integer) - `page.number` (integer)