User
Receive user object updates.
You should expect to receive webhook events whenever you successfully create or update a user.
Event Category:
- USER
Event Type:
- USER.STATUS.CREATE: Creation of the user object.
- USER.STATUS.UPDATE: Update of the user object.
Example webhook event
The data object is expected to have the same structure as the response from the Get User endpoint.
{
"eventId": "evt_1957117404034e3ade",
"eventCategory": "USER",
"eventType": "USER.STATUS.CREATE",
"eventAction": "CREATE",
"data": {
"id": "c5a11cdb-2696-4a2e-ac58-3e17fb230288",
"name": "William Yang",
"type": "individual",
"email": "[email protected]",
"wallets": {
"INDIVIDUAL": {
"POLYGON_AMOY": {
"address": "0xa8A642FBA80749318036C97344fC73aE0B64c608"
},
"ETHEREUM_TESTNET": {
"address": "0x5743Af611b44F0934A7eF0cCE6877879375824D9"
}
}
}
},
"createdAt": "2025-03-07T14:51:44.099Z",
"timestamp": "2025-03-07T14:52:00.375Z",
"version": "v2"
}
Updated 27 days ago