Wallet Updated
This event is dispatched whenever an authenticated initiates a transfer or receives deposits into a wallet
{
"event": "wallet.updated",
"data": {
"id": "r22jjnjl",
"currency": "ltc",
"balance": "0.00600000923",
"locked": "0.0",
"staked": "0.0",
"user": {
"id": "23azi7bj",
"sn": "QDXXIRPXXKS",
"email": "[email protected]",
"reference": null,
"first_name": "Oye",
"last_name": "Olalekan",
"display_name": "appstate",
"created_at": "2021-04-09T09:48:14.000Z",
"updated_at": "2022-03-14T08:29:34.000Z"
},
"converted_balance": "353.3405435547",
"reference_currency": "ngn",
"is_crypto": true,
"created_at": "2021-04-09T09:48:14.000Z",
"updated_at": "2023-05-10T09:46:39.000Z",
"deposit_address": "LaRUcCSzZ7ZATRvTCNPVYzH9wKvhjePcAN",
"destination_tag": null
}
}
{
"event": "wallet.updated",
"data": {
"id": "ehrvhnfz",
"currency": "ngn",
"balance": "540.574632524",
"locked": "101.1",
"staked": "0.0",
"user": {
"id": "23azi7bj",
"sn": "QDXXIRPXXKS",
"email": "[email protected]",
"reference": null,
"first_name": "Oye",
"last_name": "Olalekan",
"display_name": "appstate",
"created_at": "2021-04-09T09:48:14.000Z",
"updated_at": "2022-03-14T08:29:34.000Z"
},
"converted_balance": "540.574632524",
"reference_currency": "ngn",
"is_crypto": false,
"created_at": "2021-04-09T09:48:14.000Z",
"updated_at": "2022-10-04T15:31:23.000Z"
}
}
Field | Description | Type |
---|---|---|
event | The webhook event action that triggered the webhook, e.g. WALLETS.UPDATED. | String |
data | All information related to this specific webhook. | Object |
data.id | The id of the wallet. | String |
data.currency | The currency of the wallet. | String |
data.balance | The balance of the wallet. | String |
data.locked | Locked balance of the wallet. | String |
data.staked | Staked balance of the wallet. | String |
data.user | The customer's account object | Object |
data.user.id | The customer's id of the account | String |
data.user.sn | The customer's serial number | String |
data.user.email | The customer's email | String |
data.user.reference | The customer's reference | String |
data.user.first_name | The customer's first name | String |
data.user.last_name | The customer's last name | String |
data.user.display_name | The customer's display name | String |
data.user.created_at | The date on which the user was created | String |
data.user.updated_at | The date on which the user was updated | String |
data.converted_balance | The crypto balance converted to fiat. | String |
data.reference_currency | The primary fiat currency of the wallet. | String |
data.is_crypto | Boolean value to determine if the wallet is fiat or crypto. | String |
data.created_at | The date the wallet was created. | String |
data.updated_at | The date at which the wallet was updated, eg: when the balance has been updated. | String |
data.deposit_address | This is the address of the wallet. | String |
Updated over 1 year ago