Create Withdrawal Fee
This endpoint allows the creation of a withdrawal fee. Withdrawal fees are “held fees” offered by Ripio to withdraw assets at a specific fee within a period of time - for example, the option to transfer out 0.25 ETH within the next 15 seconds for 0.001 ETH.
Authorizations
B2B’s White Label API uses OAuth2. Currently there is only one supported authentication flow:
- clientCredentials allows you to access your own B2B account (First-Party Integration) and performs transactions against the public API. This oauth2 flow is well suited for this API, as it allows machine-to-machine communication.
Every call to the API has to be authenticated with an OAuth2 Token. In order to request this token, you will need to have sandbox or production API Keys (client id and client secret) that will be needed to generate a credential in order to negotiate an ephemeral access token.
Every request must be accompianed by an Authorization
header with a value that follows the following schema: Bearer ACCESS_TOKEN
Body
Currency to estimate the fee for. It needs to be the same currency as the once use later for the withdrawal. The fee in the reponse will be expressed in this currency.
The blockchain network in which the withdrawal fee needs to be estimated. The later withdrawal must be performed in the same network.
Amount to be withdrawaled. It''s the amount that wants to be transfered, the fee depends on this amount.
An external identifier, usually a unique UUID
Response
UUID used as withdrawal identifier.
ISO DateTime indicating expiration date of the withdrawal fee. Fee will be invalid after that date.
It is the requested amount to withdrawal.
Indicates de basic cost on a withdrawal fee, the network gas price. It is expressed in the requested currency.
Indicates the basic fee that it is charged on the amount to be withdrawaled. It is expressed in the requested currency.
Indicates the total fee that will be charged in order to perform a withdrawal. Tipically, equivalent to gas_price + fee. It is expressed in the requested currency.
Indicates the total amount needed to perform a withdrawal for the requested amount. It is the amount that will be decreased on the user balance. Tipically, amount + total_fee. It is expressed in the requested currency.
Was this page helpful?