Last active
December 17, 2015 15:28
-
-
Save xcommerce-gists/5631620 to your computer and use it in GitHub Desktop.
Magento simple app/config.xml for webhooks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<config> | |
<global> | |
<webhook> | |
<subscriptions> | |
<mysubscriber_alias> | |
<name>My Sample Order Created Subscriber</name> | |
<endpoint_url>http://requestb.in/101o8wy1</endpoint_url> | |
<topics> | |
<customer> | |
<created/> | |
<updated/> | |
<deleted/> | |
</customer> | |
<order> | |
<created/> | |
</order> 1,1 Top | |
</topics> | |
<authentication>hmac</authentication> | |
</mysubscriber_alias> | |
</subscriptions> | |
</webhook> | |
</global> | |
</config> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment