List Enabled Wallet Currencies
GET
/web/v1/wallet-currencies/{walletTypeValue}/enabled JWTRetrieves only the enabled currencies for a specific wallet type. Convenience endpoint equivalent to calling the type-filtered endpoint with enabledOnly=true.
Authentication
Requires a valid JWT token.
Request Parameters
| Name | Type | Required | In | Description |
|---|---|---|---|---|
walletTypeValue | integer | Required | path | Wallet type enum value (e.g. 35010401 = INTERNAL) (path parameter) |
Success Response
Success 200
{
"code": "2000",
"message": "SUCCESS",
"data": [
{
"walletTypeValue": 35010401,
"walletTypeName": "INTERNAL",
"currencyValue": 35010101,
"currencyCode": "USD",
"currencyName": "USD",
"enabled": true,
"isFiat": true,
"isStablecoin": false,
"scale": 2
}
]
}Error Responses
| HTTP Status | Code | Description |
|---|---|---|
| 400 | 4000 | Invalid wallet type value |
| 401 | 4010 | Unauthorized |