# Retrieve unit type images Fetch a paginated list of images associated with a specific unit type using its unique ID. This endpoint allows you to retrieve images that are linked to the unit type, which can include photos of the property, architectural designs, or other relevant visuals. The response includes image details such as file name, size, and type. If the specified development ID does not exist, a 404 Not Found error will be returned. In case of system errors during retrieval, a 500 Internal Server Error will be triggered. Endpoint: GET /api/v3/unitTypes/{id}/images Version: 3.0.9 Security: OAuth2 ## Path parameters: - `id` (integer, required) ## Query parameters: - `pageable` (object, required) ## Response 200 fields (application/json): - `content` (array) - `content.id` (integer) Unique identifier of the attachment - `content.name` (string, required) Name of the attachment - `content.description` (string) Description of the attachment - `content.fileSize` (integer) File size in bytes - `content.fileType` (string) File type of the attachment, e.g., image/jpeg - `content.viewUrl` (string) - `content.unitType` (object) Type summary of the unit - `content.unitType.id` (integer) Unique identifier of the unit type Example: 1 - `content.unitType.name` (string) Name of the unit type Example: "Studio Apartment" - `content.isPrimary` (boolean) - `page` (object) - `page.size` (integer) - `page.totalElements` (integer) - `page.totalPages` (integer) - `page.number` (integer)