Appearance
Create User
About 109 wordsLess than 1 minute
Event
| Event Slug | Description |
|---|---|
crm.webhooks.users.create | Triggers when user is created |
Data
| Key | Type | Description |
|---|---|---|
| client_id | string | user id |
| client_name | string | user name |
string | user email | |
| phone | object | user phone |
| phone.country_code | string | user phone's country code |
| phone.number | string | user phone's number |
| creation_type | string | creation type admin_created , approved_registration , self_registration |
Example
This is an example of the full JSON payload while rejected a withdrawal request
{
"source": {
"service": "admin-api",
"group": "crm.webhooks.groups.users.create",
"event": "crm.webhooks.users.create"
},
"target": {
"name": "用户创建"
},
"version": "1.0.0",
"data": {
"client_id": "77889900",
"client_name": "ste-chongfuID",
"email": "[email protected]",
"phone": {
"number": "",
"country_code": ""
},
"create_time": 1779328661169,
"creation_type": "admin_created"
}
}