get Issues

@GetMapping(path = ""{" + APPLICATION_IDENTIFIER_KEY + "}/" + ISSUES_KEY", headers = [] )
open fun <T> getIssues(@PathVariable(value = "id") userId: String, @RequestHeader(value = "token") token: String, @PathVariable(value = "application_id") applicationId: String, @RequestParam(name = "platform") platform: Platform, @RequestParam(name = "page", defaultValue = "0", required = false) page: Int, @RequestParam(name = "page_size", defaultValue = "10", required = false) pageSize: Int, @RequestParam(name = "filters", defaultValue = "", required = false) filters: Set<String>): T

Method to get the issues related to an application

Return

the result of the request as T

Parameters

userId

The identifier of the user

token

The token of the user

applicationId

The application of retrieve the related issues

platform

The platform of retrieve the related issues

page

The page requested

pageSize

The size of the items to insert in the page

filters

The filters to use for the issue selection