Export new orders
Last updated
Was this helpful?
Last updated
Was this helpful?
Send details about new orders placed in your store to an external service automatically.
To start receiving automatic notifications about new orders placed in your store, you need to set up webhooks in your store: Set up webhooks
Request only one order.created
event required for this flow.
With webhooks set up, when a new order is placed in the store, Ecwid automatically sends a POST request to your server. It contains the order ID and its payment and fulfillment statuses in a body JSON.
For further automation, you need to automate webhook processing. Check out the following articles to get started:
Code example for webhook processing
Get the order ID from the webhook body and save it as a variable.
Store ID
Order ID
App's secret_token
You can "hardcode" the store ID and secret_token
on your server's backend as they are constants (as long as the app is not uninstalled/reinstalled in the store). This leaves only one variable – order ID – that you can get from the webhook body.
Additionally, you can pre-define the data you want to receive by limiting Ecwid API's response with specific fields. If not limited, you'll receive full order details with hundreds of fields, which can slow down your application.
Now you have the details of the new order on your server. Parse the $response
variable from the example above and send the details to an external service of your choice.
Now you have everything to automate making a REST API call upon receiving a webhook. The call requires 3 variables: