magento2-module-webhook icon indicating copy to clipboard operation
magento2-module-webhook copied to clipboard

Webhooks for Magento 2

Results 5 magento2-module-webhook issues
Sort by recently updated
recently updated
newest added

Is this still maintained and working towards production?

Without async webhooks, this module is pretty much a no-go for production shops - the dependency on third party systems is just too risky to do synchronously. The best practice...

RFC

Thanks for this great code. I'm following a more updated fork ([XBS-Nathan/magento2-module-webhook](https://github.com/XBS-Nathan/magento2-module-webhook)). Whit the **latest Magento 2 version**, without configuring any webhook (fresh install). When you pay in the checkout,...

There's no native `customer_create_after` event in magento so we'll have to use the `customer_save_after` and check if the object is new or not.

Right now serializing the payload of the webhook is super basic, just calling getData() on the model. This is all kinds of bad because it will expose sensitive information like...

RFC