Data model
seller_count and total are computed fields — they are calculated from linked orders at query time, not stored as columns. seller_count is the count of distinct sellers across all orders in the group, and total is the sum of each order’s current_order_total from the order summary.Relationships
Order groups connect to other entities through two links:Cart (read-only)
Links the order group back to its originating cart via thecart_id field. This is a read-only link — carts are immutable after checkout.
Orders (one-to-many)
Links the order group to multiple orders through a join tableorder_group_order. Each order in the group belongs to a different seller.
How order groups are created
Order groups are created automatically during checkout by thecompleteCartWithSplitOrdersWorkflow. This is what happens when a customer completes a cart containing products from multiple sellers:
- Lock — The workflow acquires a lock on the cart to prevent double-processing
- Group by seller — Cart items are grouped by seller (via the product-seller link)
- Create orders — A separate Medusa order is created for each seller, containing only that seller’s items and shipping
- Create order group — An order group is created with the customer and cart references
- Link everything — The workflow creates links between:
- Each order and the order group
- Each order and its seller
- Each seller and the customer (if new relationship)
- Finalize — Inventory is reserved, payment is authorized, and the
order_group.createdevent is emitted
A single payment collection is shared across all of a cart’s split orders and stays on the cart, not on each order. Split orders are not linked directly to the payment collection (Medusa’s Order-group and vendor order reads normalize
order ↔ payment_collection link is one-to-one on the payment-collection side). Read the payment collection through the cart:cart.payment_collection back onto payment_collections and recompute payment_status from it, so consumers keep the familiar shape. When requesting fields on vendor order routes, make sure the request does not replace route defaults that already include cart.payment_collection.* (a fields= list containing bare fields replaces defaults in Medusa; use +-prefixed fields to merge, or include the cart.payment_collection.* paths explicitly).Events
API endpoints
List order groups (Admin)
customer_id, seller_id, status, sales_channel_id, and created_at. Paginated with offset and limit (default 50).
Get order group detail (Admin)
List order groups (Store)
Get order group detail (Store)
404 if the order group doesn’t belong to the authenticated customer.
Workflows
The list and detail workflows automatically inject order-related fields (items, payment collections, fulfillments) and compute an overall
payment_status and fulfillment_status for each order group by aggregating across all linked orders.