Reputation: 3668
Does anyone knows how I can automate the export of my magento export files? I know one way is to use magento crons but is there webhooks that fires to the API when a user makes a change in his store like other platforms such as shopify?
Upvotes: 0
Views: 2513
Reputation: 792
You might want to look at Magento's event/observer. Events are fired automatically on many actions within Magento, both frontend and backend (you can find them by searching for Mage::dispatchEvent(
). You can observe these events with a custom module, and then perform any actions you want. For example, you can observe when a user saves changes to a product and call whatever code you want within your observer function.
Upvotes: 2