toggle menu
crypto-trader-api
JVM
switch theme
search in API
crypto-trader-api
/
org.cryptotrader.api.controller
/
PortfolioController
/
getPortfolioProfitByCurrency
get
Portfolio
Profit
By
Currency
@
GetMapping
(
value
=
"/history/profit/{currencyName}"
)
@
PreAuthorize
(
value
=
"isAuthenticated()"
)
open
fun
getPortfolioProfitByCurrency
(
@
AuthenticationPrincipal
user
:
ProductUser
,
@
PathVariable
currencyName
:
String
)
:
ResponseEntity
<
AssetValueResponse
>