Fees
Consulta y configuración de comisiones.
El módulo Fees permite consultar y crear configuraciones de comisiones para el business autenticado.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Consulta y configuración de comisiones.
GET /v2/fees
| Parámetro | Requerido | Valores |
|---|---|---|
type | No | FIXED, PERCENTAGE |
pair | No | USDC/BOB, BOB/USDC, USDT/BOB, BOB/USDT |
transactionType | No | Tipos de transacción soportados |
status | No | CURRENT, OLD |
[
{
"pair": "USDC/BOB",
"transactionType": "withdrawal_express",
"amount": 0.5,
"feeType": "PERCENTAGE",
"status": "CURRENT",
"createdBy": "Partner User",
"validUntil": null,
"supersededBy": null,
"predecessor": null
}
]
POST /v2/fees
{
"pair": "USDC/BOB",
"transactionType": "withdrawal_express",
"amount": 0.5,
"type": "PERCENTAGE"
}
{
"pair": "USDC/BOB",
"transactionType": "withdrawal_express",
"amount": 0.5,
"feeType": "PERCENTAGE",
"status": "CURRENT",
"createdBy": "Partner User"
}
| Tipo | Descripción |
|---|---|
PERCENTAGE | Se aplica sobre el tipo de cambio. |
FIXED | Se aplica sobre el monto total. |