get Applications

@GetMapping(headers = [] )
open fun <T> getApplications(@PathVariable(value = "id") userId: String, @RequestHeader(value = "token") token: String, @RequestParam(name = "page", defaultValue = "0", required = false) page: Int, @RequestParam(name = "page_size", defaultValue = "10", required = false) pageSize: Int, @RequestParam(name = "name", defaultValue = "", required = false) name: String, @RequestParam(name = "platforms", defaultValue = "", required = false) platforms: List<String>): T

Method to get the applications list registered in the system

Return

the result of the request as T

Parameters

userId

The identifier of the user

token

The token of the user

page

The page requested

pageSize

The size of the items to insert in the page

name

The application name used as filter

platforms

The list of platforms used as filter