I've figured out how to post my shipping date and tracking number back to my order using PUT 3dCartWebAPI/v1/Orders/{orderid}/Shipments/{shipmentid}.
What I'm not sure about is how to set the order status to "shipped" and to trigger a notification email. For the order, can I call PUT 3dCartWebAPI/v1/Orders/{orderid} with just the order status in the body, like:
{"OrderStatusID":5}
or do I have to pull the order, change the order status ID, and then repost the whole thing?
And then how do I trigger an email to be sent? thanks!
What I'm not sure about is how to set the order status to "shipped" and to trigger a notification email. For the order, can I call PUT 3dCartWebAPI/v1/Orders/{orderid} with just the order status in the body, like:
{"OrderStatusID":5}
or do I have to pull the order, change the order status ID, and then repost the whole thing?
And then how do I trigger an email to be sent? thanks!
Comment