I am attempting to split an order in our “testing account” - an account we had set up and Ordoro imported some test orders for us.
Here is the URL I’m trying to split against:
https://api.ordoro.com/v3/order/M-900/split/
My data is:
{
“split_orders”: [
{
“lines”: [
{
“line_id”: 65899142,
“quantity”: 1
},
{
“line_id”: 65899143,
“quantity”: 0
}
]
},
{
“lines”: [
{
“line_id”: 65899142,
“quantity”: 2
},
{
“line_id”: 65899143,
“quantity”: 2
}
]
}
]
}
I’m specifying content-type of application/json, and I’m able to call the other “order” API’s successfully. Do you see anything I’m doing wrong?
Thank you!!