You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[Authentication Webhooks](https://docs.adyen.com/api-explorer/acs-webhook/1/overview)| Adyen sends this webhook when the process of cardholder authentication is finalized, whether it is completed successfully, fails, or expires. |[AcsWebhooks](src/typings/acsWebhooks)|**v1**|
45
-
|[Configuration Webhooks](https://docs.adyen.com/api-explorer/balanceplatform-webhooks/1/overview)| You can use these webhooks to build your implementation. For example, you can use this information to update internal statuses when the status of a capability is changed. |[ConfigurationWebhooks](src/typings/configurationWebhooks)|**v1**|
46
-
|[Transfer Webhooks](https://docs.adyen.com/api-explorer/transfer-webhooks/3/overview)| You can use these webhooks to build your implementation. For example, you can use this information to update balances in your own dashboards or to keep track of incoming funds. |[TransferWebhooks](src/typings/transferWebhooks)|**v3**|
47
-
|[Report Webhooks](https://docs.adyen.com/api-explorer/report-webhooks/1/overview)| You can download reports programmatically by making an HTTP GET request, or manually from your Balance Platform Customer Area |[ReportWebhooks](src/typings/reportWebhooks)|**v1**|
48
-
|[Notification Webhooks](https://docs.adyen.com/api-explorer/Webhooks/1/overview)| We use webhooks to send you updates about payment status updates, newly available reports, and other events that you can subscribe to. For more information, refer to our documentation |[Notification](src/typings/notification)|**v1**|
42
+
| Webhooks | Description | Model Name | Supported Version |
|[Authentication Webhooks](https://docs.adyen.com/api-explorer/acs-webhook/1/overview)| Adyen sends this webhook when the process of cardholder authentication is finalized, whether it is completed successfully, fails, or expires. |[AcsWebhooks](src/typings/acsWebhooks)|**v1**|
45
+
|[Configuration Webhooks](https://docs.adyen.com/api-explorer/balanceplatform-webhooks/1/overview)| You can use these webhooks to build your implementation. For example, you can use this information to update internal statuses when the status of a capability is changed. |[ConfigurationNotification](src/typings/configurationWebhooks)|**v1**|
46
+
|[Transfer Webhooks](https://docs.adyen.com/api-explorer/transfer-webhooks/3/overview)| You can use these webhooks to build your implementation. For example, you can use this information to update balances in your own dashboards or to keep track of incoming funds. |[TransferNotification](src/typings/transferWebhooks)|**v3**|
47
+
|[Report Webhooks](https://docs.adyen.com/api-explorer/report-webhooks/1/overview)| You can download reports programmatically by making an HTTP GET request, or manually from your Balance Platform Customer Area |[ReportNotification](src/typings/reportWebhooks)|**v1**|
48
+
|[Management Webhooks](https://docs.adyen.com/api-explorer/ManagementNotification/1/overview)| Adyen uses webhooks to inform your system about events that happen with your Adyen company and merchant accounts, stores, payment terminals, and payment methods when using Management API. |[ManagementWebhooks](src/typings/managementWebhooks)|**v1**|
49
+
|[Notification Webhooks](https://docs.adyen.com/api-explorer/Webhooks/1/overview)| We use webhooks to send you updates about payment status updates, newly available reports, and other events that you can subscribe to. For more information, refer to our documentation |[Notification](src/typings/notification)|**v1**|
50
+
49
51
For more information, refer to our [documentation](https://docs.adyen.com/) or the [API Explorer](https://docs.adyen.com/api-explorer/).
50
52
51
53
## Before you begin
@@ -269,7 +271,7 @@ let bankingWebhookHandler = new BankingWebhookHandler(YOUR_BANKING_WEBHOOK);
You can also parse the webhook with a generic type, in case you do not know the webhook type in advance. In this case you can check the instance of the webhook in order to parse it to the respective type (or just use it dynamically);
273
275
```typescript
274
276
let bankingWebhookHandler =newBankingWebhookHandler(YOUR_BANKING_WEBHOOK);
0 commit comments