Prerequisites
- API credentials from the Fire dashboard (see Authentication)
- A publicly accessible HTTPS endpoint on your side
- Dashboard access to Settings → Integration Flows
Step 1: Configure an Integration Flow
In the Fire dashboard, go to Settings → Integration Flows → New flow, then:- Trigger: pick
order.completed - Scope: account, vendor, and optionally specific stores
- HTTP node: add one and set
- Method:
POST - URL: your HTTPS endpoint
- Headers:
Content-Type: application/json(plus any auth header — Bearer token / API key) - Body: paste the canonical example template the dashboard ships with (it produces
{ event, data, _meta })
- Method:
- Activate the flow
Step 2: Channel and service identifiers for orders
If you inject orders, yourchannel and service objects need Fire uid values (and related fields). Take those identifiers from publication webhook payloads — for example channel.updated and related events — or from the integration and channel setup you manage in the Fire dashboard (see Aggregator integrations).
Step 3: Handle the event
Your endpoint will receivePOST requests from your flow whenever an order is completed. The body shape is the one your flow’s body template renders. With the canonical template, that’s:
order.completed for the field-by-field payload reference.
Step 4: Inject orders
When your system receives an order (from an aggregator or any other source), inject it into Fire.status=COMPLETED and paymentStatus=SUCCEEDED, your flow fires and your handler runs. If the order is later cancelled, you’ll receive order.cancelled.
See Inject order for the complete payload reference.
Step 5: Add fiscal events (Brazil only)
If you operate in Brazil and have fiscal emission enabled for a store, add a second flow with triggerorder.invoiced (and another with order.reversed) — same HTTPS endpoint, same template — to receive the fiscal document context.
Next steps
Handle order events
Detailed walkthrough with auth and idempotency.
Events overview
Envelope, headers, retries, dedup.
order.completed reference
Full payload schema with the BR fiscal blocks.
API reference
Inject orders and call authenticated endpoints.

