Skip to content

Instantly share code, notes, and snippets.

@xcommerce-gists
Last active December 17, 2015 15:28
Show Gist options
  • Save xcommerce-gists/5631620 to your computer and use it in GitHub Desktop.
Save xcommerce-gists/5631620 to your computer and use it in GitHub Desktop.
Magento simple app/config.xml for webhooks
<?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