Appearance
Are you an LLM? You can read better optimized documentation at /guide/users/events.md for this page in Markdown format
Events
This article lists the Webhooks you may receive when regarding Users.
API – See the Users API Reference for attributes description
The detailed information of the User attributes are available in the of the Users API Reference. Webhooks object_payload is identical to the API object.
User events
user.create
Notifies the creation of a User, usually triggered by the /v1/users endpoint.
json
{
"webhook": "user.create",
"object_payload": {
"users": [
{
"userId": "123456789",
"userTypeId": "1",
"userStatus": "VALIDATED",
"clientId": "12345",
"userTag": "",
"parentUserId": null,
"parentType": null,
"title": "M",
"firstname": "Alex",
"lastname": "OAK",
"middleNames": "",
"birthday": "1994-01-01",
"email": "aoak@example.com",
"address1": "10 RUE DE LA PAIX",
"address2": "",
"address3": "",
"postcode": "75001",
"city": "PARIS",
"state": "",
"country": "FR",
"countryName": "France",
"distributionCountry": null,
"phone": "+33191605190",
"mobile": "",
"nationality": "",
"nationalityOther": "",
"placeOfBirth": "",
"birthCountry": "",
"secondaryAddress1": null,
"secondaryAddress2": null,
"secondaryAddress3": null,
"secondaryPostcode": null,
"secondaryCity": null,
"secondaryState": null,
"secondaryCountry": null,
"occupation": "",
"incomeRange": "", // DEPRECATED
"legalName": "",
"legalNameEmbossed": "",
"legalRegistrationNumber": "",
"legalTvaNumber": "",
"legalRegistrationDate": null,
"legalForm": "",
"legalShareCapital": "0",
"legalSector": "",
"legalAnnualTurnOver": "",
"legalNetIncomeRange": "",
"legalNumberOfEmployeeRange": "",
"effectiveBeneficiary": "0.00",
"position": "",
"personalAssets": "",
"taxResidence": "", // DEPRECATED
"taxNumber": "", // DEPRECATED
"kycLevel": "2",
"kycReview": "0",
"kycReviewComment": "",
"isFreezed": "0",
"language": null,
"specifiedUSPerson": "0",
"employeeType": "1",
"entityType": "0", // DEPRECATED
"controllingPersonType": "0",
"activityOutsideEu": null,
"economicSanctions": null,
"residentCountriesSanctions": null,
"involvedSanctions": null,
"sanctionsQuestionnaireDate": null,
"timezone": null,
"occupationType": null, // DEPRECATED
"isOnStockExchange": null,
"IsLegalFrozen": "0",
"sourceOfFunds": null,
"legalSectorType": null,
"createdDate": "2026-03-10 15:59:22",
"modifiedDate": "2026-03-10 15:59:22",
"codeStatus": "110009",
"informationStatus": "",
"sepaCreditorIdentifier": null,
"walletCount": "1",
"payinCount": "0",
"totalRows": "1"
}
]
},
"object_id": "100060789",
"object": "user",
"webhook_created_at": 17047224279950,
"webhook_id": "e77663b0-0c4f-49c3-be53-96f39001234",
"object_payload_signature": "abcDZ6MeUFRIjNoRDMN4KFjNJ0yR2Eok+MFrEq1k2/ho="
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
user.update
Notifies the modification of a User, usually triggered by the /v1/users/{userId} endpoint.
json
{
"webhook": "user.update",
"object_payload": {
"users": [
{
"userId": "123456789",
"userTypeId": "1",
"userStatus": "VALIDATED",
"clientId": "12345",
"userTag": "",
"parentUserId": null,
"parentType": null,
"title": "M",
"firstname": "Alex",
"lastname": "OAK",
"middleNames": "",
"birthday": "1994-01-01",
"email": "aoak@example.com",
"address1": "10 RUE DE LA PAIX",
"address2": "",
"address3": "",
"postcode": "75001",
"city": "PARIS",
"state": "",
"country": "FR",
"countryName": "France",
"distributionCountry": null,
"phone": "+33191605190",
"mobile": "",
"nationality": "",
"nationalityOther": "",
"placeOfBirth": "",
"birthCountry": "",
"secondaryAddress1": null,
"secondaryAddress2": null,
"secondaryAddress3": null,
"secondaryPostcode": null,
"secondaryCity": null,
"secondaryState": null,
"secondaryCountry": null,
"occupation": "",
"incomeRange": "", // DEPRECATED
"legalName": "",
"legalNameEmbossed": "",
"legalRegistrationNumber": "",
"legalTvaNumber": "",
"legalRegistrationDate": null,
"legalForm": "",
"legalShareCapital": "0",
"legalSector": "",
"legalAnnualTurnOver": "",
"legalNetIncomeRange": "",
"legalNumberOfEmployeeRange": "",
"effectiveBeneficiary": "0.00",
"position": "",
"personalAssets": "",
"taxResidence": "", // DEPRECATED
"taxNumber": "", // DEPRECATED
"kycLevel": "2",
"kycReview": "0",
"kycReviewComment": "",
"isFreezed": "0",
"language": null,
"specifiedUSPerson": "0",
"employeeType": "1",
"entityType": "0", // DEPRECATED
"controllingPersonType": "0",
"activityOutsideEu": null,
"economicSanctions": null,
"residentCountriesSanctions": null,
"involvedSanctions": null,
"sanctionsQuestionnaireDate": null,
"timezone": null,
"occupationType": null, // DEPRECATED
"isOnStockExchange": null,
"IsLegalFrozen": "0",
"sourceOfFunds": null,
"legalSectorType": null,
"createdDate": "2026-03-10 15:59:22",
"modifiedDate": "2026-03-10 15:59:22",
"codeStatus": "110009",
"informationStatus": "",
"sepaCreditorIdentifier": null,
"walletCount": "1",
"payinCount": "0",
"totalRows": "1"
}
]
},
"object_id": "100060789",
"object": "user",
"webhook_created_at": 17047224279950,
"webhook_id": "e77663b0-0c4f-49c3-be53-96f39001234",
"object_payload_signature": "abcDZ6MeUFRIjNoRDMN4KFjNJ0yR2Eok+MFrEq1k2/ho="
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
user.cancel
Notifies the deletion of a User, usually triggered by the /v1/users/{userId} endpoint.
json
{
"webhook": "user.cancel",
"object_payload": {
"users": [
{
"userId": "123456789",
"userTypeId": "1",
"userStatus": "CANCELED",
"clientId": "12345",
"userTag": "",
"parentUserId": null,
"parentType": null,
"title": "M",
"firstname": "Alex",
"lastname": "OAK",
"middleNames": "",
"birthday": "1994-01-01",
"email": "aoak@example.com",
"address1": "10 RUE DE LA PAIX",
"address2": "",
"address3": "",
"postcode": "75001",
"city": "PARIS",
"state": "",
"country": "FR",
"countryName": "France",
"distributionCountry": null,
"phone": "+33191605190",
"mobile": "",
"nationality": "",
"nationalityOther": "",
"placeOfBirth": "",
"birthCountry": "",
"secondaryAddress1": null,
"secondaryAddress2": null,
"secondaryAddress3": null,
"secondaryPostcode": null,
"secondaryCity": null,
"secondaryState": null,
"secondaryCountry": null,
"occupation": "",
"incomeRange": "", // DEPRECATED
"legalName": "",
"legalNameEmbossed": "",
"legalRegistrationNumber": "",
"legalTvaNumber": "",
"legalRegistrationDate": null,
"legalForm": "",
"legalShareCapital": "0",
"legalSector": "",
"legalAnnualTurnOver": "",
"legalNetIncomeRange": "",
"legalNumberOfEmployeeRange": "",
"effectiveBeneficiary": "0.00",
"position": "",
"personalAssets": "",
"taxResidence": "", // DEPRECATED
"taxNumber": "", // DEPRECATED
"kycLevel": "2",
"kycReview": "0",
"kycReviewComment": "",
"isFreezed": "0",
"language": null,
"specifiedUSPerson": "0",
"employeeType": "1",
"entityType": "0", // DEPRECATED
"controllingPersonType": "0",
"activityOutsideEu": null,
"economicSanctions": null,
"residentCountriesSanctions": null,
"involvedSanctions": null,
"sanctionsQuestionnaireDate": null,
"timezone": null,
"occupationType": null, // DEPRECATED
"isOnStockExchange": null,
"IsLegalFrozen": "0",
"sourceOfFunds": null,
"legalSectorType": null,
"createdDate": "2026-03-10 15:59:22",
"modifiedDate": "2026-03-10 15:59:22",
"codeStatus": "110009",
"informationStatus": "",
"sepaCreditorIdentifier": null,
"walletCount": "1",
"payinCount": "0",
"totalRows": "1"
}
]
},
"object_id": "100060789",
"object": "user",
"webhook_created_at": 17047224279950,
"webhook_id": "e77663b0-0c4f-49c3-be53-96f39001234",
"object_payload_signature": "abcDZ6MeUFRIjNoRDMN4KFjNJ0yR2Eok+MFrEq1k2/ho="
}1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95