Web Hooks
Web Hooks allow notifying external applications about events occurring in your Orderino account. When an event triggers, the system sends an HTTP request with order data to the URLs you specify.
How it works
When one of the supported events occurs, Orderino sends an HTTP request using the POST method with a JSON document in the body to each specified link.
In PHP, you can read the request body, for example, using file_get_contents("php://input").
Supported events:
order.added— order creationorder.updated— order updateorder.deleted— order deletion
Configuration parameters
- Enabled? — checkbox that activates or disables sending Web Hook notifications.
- Links for sending event notifications — textarea field where you specify the URLs to which notifications will be sent.
Each URL should be specified on a new line, one link per line.