# Retrieve a list of issues Fetch a paginated list of issues within the Property Management System (PMS), representing property management tasks, maintenance requests, or guest service concerns. This endpoint allows filtering by multiple parameters, including issue details (ID, subject, status, type, priority), assignment details (assignee user or team), date ranges (reported date, response target date, resolution target date, last updated date), and related entities (booking, unit, or building). The response includes key issue details, making it useful for tracking operational tasks, managing maintenance workflows, and ensuring efficient resolution. If no filters are applied, all available issues will be returned in a paginated format. In case of an unexpected system error, a will be triggered. Endpoint: GET /api/v3/issues Version: 3.0.4 Security: OAuth2 ## Query parameters: - `issueId` (integer) Issue ID - `subject` (string) Subject - `assigneeUserId` (integer) Assignee User ID - `assigneeTeamId` (integer) Assignee Team ID - `reportedDate` (string) Reported Date - `reportedDateEnd` (string) Reported Date End - `responseTargetDate` (string) Response Target Date - `responseTargetDateEnd` (string) Response Target Date End - `resolutionTargetDate` (string) Resolution Target Date - `resolutionTargetDateEnd` (string) Resolution Target Date End - `issueLastUpdatedDate` (string) Issue Last Updated Date - `issueLastUpdatedDateEnd` (string) Issue Last Updated Date End - `bookingId` (integer) Booking ID - `unitId` (integer) Unit ID - `buildingId` (integer) Building ID - `status` (string) Status - `issueTypeId` (integer) Issue Type ID - `priorityId` (integer) Priority ID - `currentUser` (object, required) - `pageable` (object, required) ## Response 200 fields (application/json): - `content` (array) - `content.id` (integer) The unique identifier of the issue - `content.resolutionTargetDate` (string) The target date for resolving the issue - `content.lastUpdated` (string) The last time the issue was updated - `content.subject` (string) The subject of the issue - `content.bookingId` (integer) The booking ID associated with the issue - `content.issueStatus` (string) The status of the issue - `content.buildingId` (integer) The building ID associated with the issue - `content.unitId` (integer) The unit ID associated with the issue - `content.issueTypeId` (integer) The issue type ID - `content.assigneeUserId` (integer) The user ID of the assignee - `content.assigneeCompanyId` (integer) The company ID of the assignee - `content.assigneeTeamId` (integer) The team ID of the assignee - `content.responseTargetDate` (string) The target date for responding to the issue - `content.timeOfReporting` (string) The time when the issue was reported - `page` (object) - `page.size` (integer) - `page.totalElements` (integer) - `page.totalPages` (integer) - `page.number` (integer)