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