List Tariff Templates
GET
/web/v1/transfer-tariff-templates/query/list JWTRetrieves all transfer tariff templates belonging to the current tenant.
Authentication
Requires a valid JWT token and Turnstile verification.
Request Parameters
No parameters required.
Success Response
Success 200
{
"code": "2000",
"message": "SUCCESS",
"data": [
{
"bizId": "TTL20260321000001",
"templateCode": "STANDARD_FEE",
"templateName": "Standard Fee",
"description": "Default transfer fee template",
"tariffModel": "PERCENTAGE",
"fixedAmount": null,
"rate": 0.025,
"floorAmount": 1,
"ceilingAmount": 100,
"amountScale": 2,
"roundingMode": "HALF_UP",
"bandsConfig": null,
"isDefault": true,
"enabled": true,
"createdAt": "2026-03-21T10:00:00Z",
"updatedAt": "2026-03-21T10:00:00Z"
}
]
}Error Responses
| HTTP Status | Code | Description |
|---|---|---|
| 401 | 4010 | Unauthorized |
Notes
- Returns all templates for the tenant, both enabled and disabled.
- Templates are identified by their unique
templateCodewithin a tenant.