Viewing Orders
In the Portal
The Orders page in the portal shows all orders across all connected bridges. You can:
- Search by order number, customer name, or email
- Filter by status, bridge, date range, or tags
- Sort by date, order number, or total price
- Click any order to view its full details
Order Detail View
The order detail page shows:
- Order header with status badge and source bridge
- Customer information
- Shipping and billing addresses
- Line items with quantities and prices
- Financial summary
- Associated shipments with tracking
- Activity timeline
Via the API
List orders with filtering and pagination:
GET /api/orders?status=processing&limit=50&page=1Get a single order:
GET /api/orders/:idSee API Reference: Orders for complete endpoint documentation.
Filtering Options
| Filter | API Parameter | Description |
|---|---|---|
| Status | status | Filter by order status |
| Bridge | bridgeId | Filter by source bridge |
| Date range | startDate, endDate | Filter by order date |
| Search | search | Search order number, customer name, email |
| Tags | tags | Filter by tags |
| Financial status | financialStatus | Filter by payment status |