Order Status Sync
Trigger
app.apiServer.post('/webhooks/order-status-change', async (req, res) =>
{
res.status(200).send({ success: true });
const { entityId } = req.body; // document ID
await addToQueue('order-status.sync', entityId);
});Fetching Fulfillment Data
Field
Purpose
Mapping Order Status
ERP Status
Typical Platform Status
Pushing to the Platform
Full Fulfillment
Partial Fulfillment
Cancellation
Finding the External Order ID
Marketplace-Specific Considerations
Last updated
Was this helpful?