Auszahlung per ID
Auszahlung an eine Wallet-ID.
Anfragebeispiel
curl --location 'https://app.heth.me/api/v1/transactions' \
--header 'Content-Type: application/json' \
--header 'x-api-key: 440944de-e5a4-6aab-9c57-3bf2e7282c64' \
--data '{
"params": {
"amount": "10000000000000000000",
"currency": "USDT",
"env": "prod",
"type": "payout",
"route": "hot_hot_ETH",
"money_storage": {
"wallet_id": "9D0089A4A8024E4724D03D2E572EB53DDE850B99",
"network": "ETH",
"type": "p2p_proxy",
"currency": "USDT"
},
"description": "Auszahlung",
"txid": "7c9e6679-7425-40de-944b-e07fc1f90ae7"
}
}'
| Feld | Beschreibung | Typ | Beispiel |
|---|---|---|---|
| amount | Transaktionsbetrag (Ganzzahl in kleinsten Einheiten, als String) | String | 10000000000000000000 |
| currency | Transaktionswährung (Standard USDT) | String | USDT |
| env | Transaktionsumgebung (Standard prod) | String | prod |
| route | Transaktionsroute (muss der Routenzuordnung entsprechen) | String | hot_hot_ETH |
| type | Transaktionstyp (in diesem Fall payout) | String | payout |
| money_storage | Empfängerdatenobjekt | Objekt | |
| >wallet_id | Empfänger-Wallet-ID | String | 9D0089A4A8024E4724D03D2E572EB53DDE850B99 |
| >network | Blockchain-Netzwerk (TRX oder ETH) | String | ETH |
| >type | Transaktionstyp für Wallets (in diesem Fall p2p_proxy) | String | p2p_proxy |
| >currency | Empfängerwährung (Standard USDT) | String | USDT |
| description | Transaktionsbeschreibung | String | Auszahlung |
| txid | Idempotenter Transaktionsbezeichner (UUID) | String | 7c9e6679-7425-40de-944b-e07fc1f90ae7 |