I am working with an Umbraco 8 site that is using Vendr v1.4.1. and we are stuck with those versions for the time being (long story). In this context, is there any way to access all current carts, by which I mean get a list of all carts that are currently active?
My initial thinking for implementing this would be using the API to list all orders which have a status of "New" and restrict the date range to today - is that correct / sufficient to define what the current, active carts are ?
You should be able to query for orders that are not finalized (a finalized order is a completed order, where unfinalized are carts). You could filter further by last updated date if you want carts modified within a specific timeframe.
Access all current carts ?
Hello,
I am working with an Umbraco 8 site that is using Vendr v1.4.1. and we are stuck with those versions for the time being (long story). In this context, is there any way to access all current carts, by which I mean get a list of all carts that are currently active?
My initial thinking for implementing this would be using the API to list all orders which have a status of "New" and restrict the date range to today - is that correct / sufficient to define what the current, active carts are ?
Any pointers would be appreciated :-)
Kind regards,
Scott
You should be able to query for orders that are not finalized (a finalized order is a completed order, where unfinalized are carts). You could filter further by last updated date if you want carts modified within a specific timeframe.
Thanks Matt, that's very helpful.
is working on a reply...