I would like to know if the stockCount is updated when an order is placed or when is paid and locked?
I'm creating the order through the atomic order endpoint with the API.
Thanks for any help.
I would like to know if the stockCount is updated when an order is placed or when is paid and locked?
I'm creating the order through the atomic order endpoint with the API.
Thanks for any help.
Inventory control schedules a stock count that tracks this behavior ... late sale processing takes place to accurately update stock count quantities.
Item stock will decrease with item sold. You can configure Clover to track stock automatically by going into the Inventory App> settings> track stock and auto decrease stock count.
If you are tracking it manually on your end, you will have to use the Update inventory item stock call with your other code logic for order creation or payments: {baseUrl}/v3/merchants/{mId}/item_stocks/{itemId}
Some systems might choose to update the stockCount as soon as an order is placed. This ensures that the available stock is immediately reduced to prevent overselling. This approach doesn't depend on payment or order fulfillment status.
8 People are following this question.