Check Wallet Tariff Exists
GET
/web/v1/wallet-tariffs/query/wallet/{walletId}/exists JWTChecks whether a specific wallet has a tariff configuration assigned.
Authentication
Requires a valid JWT token and Turnstile verification.
Request Parameters
| Name | Type | Required | In | Description |
|---|---|---|---|---|
walletId | string | Required | path | Wallet ID (path parameter) |
Success Response
Success 200
{
"code": "2000",
"message": "SUCCESS",
"data": true
}Error Responses
| HTTP Status | Code | Description |
|---|---|---|
| 401 | 4010 | Unauthorized |
Notes
- Returns
trueif the wallet has a tariff assigned,falseotherwise. - Use this as a pre-check before attempting to create a transfer.