-
Notifications
You must be signed in to change notification settings - Fork 7
/
configuration.json
55 lines (55 loc) · 1.04 KB
/
configuration.json
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
{
"business": {
"name": "Acme, Inc.",
"signoff": "The Acme Team",
"email_address": "Test Stripe Webhooks <[email protected]>",
"notification_address": "[email protected]"
},
"notifications": {
"balance.available": {
"active": true
},
"charge.succeeded": {
"active": true
},
"charge.failed": {
"active": true
},
"charge.refunded": {
"active": true
},
"charge.dispute.created": {
"active": true
},
"charge.dispute.updated": {
"active": true
},
"customer.created": {
"active": true
},
"customer.updated": {
"active": true
},
"customer.deleted": {
"active": true
},
"customer.discount.created": {
"active": true
},
"invoice.created": {
"active": true
},
"invoice.payment_succeeded": {
"active": true
},
"invoice.payment_failed": {
"active": true
}
},
"receipts": {
"invoice.created": {
"active": true,
"subject": "New Invoice"
}
}
}