WALLET.UPDATED
This event is dispatched when wallet is udpated
{
"event": "wallet.updated",
"data": {
"wallet": {
"transaction_reference": "bq_RkaUV0Zy3PGpQsT8c",
"amount": 10.1178,
"available_balance": 6.8399,
"ledger_balance": 0,
"currency": "USDC",
"name": "USD Coin",
"type": "CRYPTO",
"is_live": false
}
}
}
| Field | Description | Type |
|---|---|---|
| event | The webhook event action that triggered the webhook | String |
| data | All information related to this specific webhook | Object |
| data.wallet | All information related to the wallet that was updated | Object |
| data.wallet.transaction_reference | Reference of transaction that triggered wallet update | String |
| data.wallet.amount | Amount that was added to wallet | Number |
| data.wallet.available_balance | Balance on wallet | Number |
| data.wallet.ledger_balance | Ledger Balance of Wallet | Number |
| data.wallet.currency | Currency code of the wallet that was updated e.g USDC | String |
| data.wallet.name | Name of the wallet that was updated e.g USD Coin | String |
| data.wallet.is_live | Did the webhook happen in production? false = sandbox while true = production | Boolean |
Updated about 16 hours ago