Check Wallet Tariff Exists
GET
/web/v1/system/transfers/wallet-tariffs/query/wallet/{walletId}/exists JWTRequired Gateway Headers
All API requests require gateway headers. See Required Headers for the complete list. In local/test environments, you must also include Cloudflare simulation headers (CF-Connecting-IP, Cf-Ray, cf-ipcountry).
Checks 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.