For digital products, is there a way to fulfil order items separately? #410
-
Let's say a customer purchased 2 digital products as order items, and only 1 has been provisioned so far. Is there a way for us to separately mark order items as fulfilled? Ideally the order is only marked as fulfilled when all order items have been fulfilled? I tried this via the API, but if I set the My guess is that the POST /orders
Response (
POST /payments
PUT /orders/65307131d25c0900129b0921
Response (
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I believe that's because there isn't a built-in "delivery" method for digital items, and the It should be possible to customize the model for this use case but since we haven't tested this approach I can't say for sure what the side effects might be You can give it a try by changing the |
Beta Was this translation helpful? Give feedback.
I believe that's because there isn't a built-in "delivery" method for digital items, and the
quantity_delivered
and related field formulas only work with the standard delivery methods out of the box (shipment, subscription, giftcard)It should be possible to customize the model for this use case but since we haven't tested this approach I can't say for sure what the side effects might be
You can give it a try by changing the
enum
property on the orders modeldelivery
fields via API console