Appearance
Events
This article lists the Webhooks you may receive when regarding Wallets.
Wallets
wallet.create
json
{
"webhook":"wallet.create",
"webhook_id":"648614636",
"object":"wallet",
"object_id":"4330619",
"object_payload":{
"wallets":[
{
"walletId":"4330619",
"walletTypeId":"9",
"walletStatus":"VALIDATED",
"userId":"3691057",
"jointUserId":"0",
"walletTag":"62090",
"currency":"EUR",
"eventDate":"2021-04-29",
"eventMessage":"",
"eventAlias":"XXXX",
"eventPayinStartDate":"2021-04-22",
"eventPayinEndDate":"0000-00-00",
"contractSigned":"0",
"urlImage":"",
"createdDate":"2021-04-22 14:54:14",
"modifiedDate":"0000-00-00 00:00:00",
"tariffId":"59",
"eventName":"XXXX",
"userFirstname":"XXXX",
"userLastname":"XXXX",
"codeStatus":"120005",
"informationStatus":"",
"payinCount":"0",
"payoutCount":"0",
"transferCount":"0",
"solde":null,
"authorizedBalance":null,
"bic":"TRZOFR21XXX",
"iban":"XXXX",
"totalRows":1
}
]
},
"object_payload_signature":"eYIDFtDa3Ai9T+0vRgIFwU0oDYZ2WkcILLRDOBWLAY8="
}
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
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
wallet.update
json
{
"webhook":"wallet.update",
"webhook_id":"644808221",
"object":"wallet",
"object_id":"3858134",
"object_payload":{
"wallets":[
{
"walletId":"3858134",
"walletTypeId":"9",
"walletStatus":"VALIDATED",
"userId":"3384099",
"jointUserId":"0",
"walletTag":"",
"currency":"EUR",
"eventDate":"2021-03-02",
"eventMessage":"",
"eventAlias":"XXXX",
"eventPayinStartDate":"2021-02-23",
"eventPayinEndDate":"0000-00-00",
"contractSigned":"0",
"urlImage":"",
"createdDate":"2021-02-23 02:05:24",
"modifiedDate":"2021-04-19 19:16:46",
"tariffId":"25",
"eventName":"XXXX",
"userFirstname":"XXXX",
"userLastname":"SAS",
"codeStatus":"120005",
"informationStatus":"",
"payinCount":"0",
"payoutCount":"0",
"transferCount":"0",
"solde":"0.00",
"authorizedBalance":"0.00",
"bic":"TRZOFR21XXX",
"iban":"XXXX"
}
]
},
"object_payload_signature":"h+0FXlKloXIrFHpY\/PMMIoIQbUBTp5W1HlXZnqCNHx4="
}
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
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
wallet.cancel
json
{
"webhook":"wallet.cancel",
"webhook_id":"21419123",
"object":"wallet",
"object_id":"860377",
"object_payload":{
"wallets":[
{
"walletId":"860377",
"walletTypeId":"10",
"walletStatus":"CANCELED",
"userId":"1622006",
"jointUserId":"0",
"walletTag":"",
"currency":"EUR",
"eventDate":"2021-04-29",
"eventMessage":"",
"eventAlias":"XXXX",
"eventPayinStartDate":"2021-04-22",
"eventPayinEndDate":"0000-00-00",
"contractSigned":"0",
"urlImage":"",
"createdDate":"2021-04-22 14:55:33",
"modifiedDate":"2021-04-22 14:55:33",
"tariffId":"83",
"eventName":"XXXX",
"userFirstname":"",
"userLastname":"",
"codeStatus":"120003",
"informationStatus":"",
"payinCount":"0",
"payoutCount":"0",
"transferCount":"0",
"solde":"0.00",
"authorizedBalance":"0.00",
"bic":"TRZOFR21XXX",
"iban":"XXXX"
}
]
},
"object_payload_signature":"UhRUkiWyKTptpF\/mbeiN20+XRBM2igEXM8JoUSrQZMs="
}
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
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
Balances
balance.update
is sent to you any time the balance of a Wallet changes
balance.update
json
{
"webhook": "balance.update",
"webhook_id": "382069610",
"object": "balance",
"object_id": "2xxxxx7",
"object_payload": {
"balances": [
{
"walletId": "2xxxxx7",
"currentBalance": "4819188.18", // updated Current Balance
"authorizations": "407973.44",
"authorizedBalance": "4411214.74", // updated Authorized Balance
"currency": "EUR",
"calculationDate": "2020-07-03 11:14:38"
}
]
},
"object_payload_signature": "Rd8sLKMet9oPVYiEMLR5p5idGcOTBLhbZ7xnKvTOr3o="
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19