1111 'account.update' ,
1212 'entity.update' ,
1313 'entity.create' ,
14+ 'account_verification.create' ,
15+ 'account_verification.update' ,
1416 'payment_reversal.create' ,
1517 'payment_reversal.update' ,
1618 'connection.create' ,
1719 'connection.update' ,
18- 'account_verification.create' ,
19- 'account_verification.update' ,
2020 'transaction.create' ,
2121 'transaction.update' ,
2222 'report.create' ,
2323 'report.update' ,
24+ 'product.create' ,
25+ 'product.update' ,
26+ 'subscription.create' ,
27+ 'subscription.update' ,
2428 'credit_score.create' ,
2529 'credit_score.update' ,
26-
27- # Deprecated
28- 'account_verification.sent' ,
29- 'account_verification.returned'
30+ 'payoff.create' ,
31+ 'payoff.update' ,
32+ 'entity_verification_session.create' ,
33+ 'entity_verification_session.update' ,
34+ 'connect.create' ,
35+ 'connect.update' ,
36+ 'balance.create' ,
37+ 'balance.update' ,
38+ 'identity.create' ,
39+ 'identity.update' ,
40+ 'account_verification_session.create' ,
41+ 'account_verification_session.update' ,
42+ 'card_brand.create' ,
43+ 'card_brand.update' ,
44+ 'sensitive.create' ,
45+ 'sensitive.update' ,
46+ 'update.create' ,
47+ 'update.update' ,
48+ 'attribute.create' ,
49+ 'attribute.update' ,
50+ 'account.opened' ,
51+ 'account.closed' ,
52+ 'credit_score.increased' ,
53+ 'credit_score.decreased' ,
54+ 'attribute.credit_health_credit_card_usage.increased' ,
55+ 'attribute.credit_health_credit_card_usage.decreased' ,
56+ 'attribute.credit_health_derogatory_marks.increased' ,
57+ 'attribute.credit_health_derogatory_marks.decreased' ,
58+ 'attribute.credit_health_hard_inquiries.increased' ,
59+ 'attribute.credit_health_hard_inquiries.decreased' ,
60+ 'attribute.credit_health_total_accounts.increased' ,
61+ 'attribute.credit_health_total_accounts.decreased' ,
62+ 'attribute.credit_health_credit_age.increased' ,
63+ 'attribute.credit_health_credit_age.decreased' ,
64+ 'attribute.credit_health_payment_history.increased' ,
65+ 'attribute.credit_health_payment_history.decreased'
3066]
3167
3268
@@ -37,13 +73,15 @@ class Webhook(TypedDict):
3773 metadata : Optional [Dict [str , Any ]]
3874 created_at : str
3975 updated_at : str
76+ expand_event : bool
4077
4178
4279class WebhookCreateOpts (TypedDict ):
4380 type : WebhookTypesLiterals
4481 url : str
4582 auth_token : Optional [str ]
4683 metadata : Optional [Dict [str , Any ]]
84+ expand_event : Optional [bool ]
4785
4886
4987class WebhookResource (Resource ):
0 commit comments