diff --git a/framework/ordercloud/api/endpoints/cart/add-item.ts b/framework/ordercloud/api/endpoints/cart/add-item.ts index d292a3157..197f58a0e 100644 --- a/framework/ordercloud/api/endpoints/cart/add-item.ts +++ b/framework/ordercloud/api/endpoints/cart/add-item.ts @@ -24,7 +24,7 @@ const addItem: CartEndpoint['handlers']['addItem'] = async ({ // Create an order if it doesn't exist if (!cartId) { - cartId = await restFetch('POST', `/orders/Outgoing`).then( + cartId = await restFetch('POST', `/orders/Outgoing`, {}).then( (response: { ID: string }) => response.ID ) }