list Potential Members

@GetMapping(headers = "token", path = ""/" + MEMBERS_KEY" )
open fun <T> listPotentialMembers(    @RequestHeader(value = "token") token: String,     @PathVariable(value = "user_id") userId: String,     @RequestParam(name = "page", defaultValue = "0", required = false) page: Int,     @RequestParam(name = "pageSize", defaultValue = "10", required = false) pageSize: Int): T

Method to get the potential members to add in a team

Return

the result of the request as [JSONObject]

Parameters

userId

The identifier of the user

token

The token of the user