# Retrieve a list of all issue types Fetch a list of all available issue types within the Property Management System (PMS). Issue types categorise different kinds of property-related concerns, maintenance requests, or guest service issues, such as housekeeping, technical repairs, complaints, or general inquiries. This endpoint provides a structured way to classify and manage operational issues, ensuring efficient tracking and resolution. The response includes a list of issue types, each containing relevant metadata. If an unexpected system error occurs, a will be triggered. Endpoint: GET /api/v3/issues/issueTypes Version: 3.0.4 Security: OAuth2 ## Response 200 fields (application/json): - `content` (array) - `content.id` (integer) ID of the issue type - `content.name` (string, required) Name of the issue type - `content.issuePriority` (object, required) Priority of the issue - `content.issuePriority.id` (integer) The unique identifier of the issue priority - `content.issuePriority.name` (string) The name of the issue priority - `content.categoryIcon` (string) Category icon of the issue type - `content.typeIcon` (string) Type icon of the issue type - `content.assigneeTeam` (object) Team assigned to the issue - `content.assigneeTeam.id` (integer) The unique identifier of the team - `content.assigneeTeam.teamName` (string) The name of the team - `content.assigneeUser` (object) User who started the issue - `content.assigneeUser.id` (integer) The unique identifier of the user - `content.assigneeUser.firstName` (string) The first name of the user - `content.assigneeUser.lastName` (string) The last name of the user - `content.assigneeUser.username` (string) The username of the user - `content.assigneeCompany` (object) Company summary associated with the finance account - `content.assigneeCompany.id` (integer) Unique identifier of the company - `content.assigneeCompany.companyName` (string) Name of the company - `content.building` (object) Building associated with the unit type - `content.building.id` (integer) Unique identifier of the building - `content.building.name` (string) Name of the building - `page` (object) - `page.size` (integer) - `page.totalElements` (integer) - `page.totalPages` (integer) - `page.number` (integer)