Place Order
Convert the checkout session into a permanent order. Choose between two implementations:
Option 1: Commerce Webstore Checkout Orders API
- Single-step order placement
- Best for simple, synchronous scenarios
- Minimal customization needed
- Endpoint: POST
/commerce/webstores/{webstoreId}/checkouts/{activeOrCheckoutId}/orders
Option 2: Commerce Webstore Checkout Place Order Action API
- Two-step process (Prepare + Submit)
- Better control and extensibility
- Staged workflow with webhook support
- Endpoint: POST
/commerce/webstores/{webstoreId}/checkouts/{activeOrCheckoutId}/orders/actions
See Understanding B2B Checkout Place Order APIs for detailed comparison.