Vasilis Spilka
11/06/2023, 8:33 PM%{
"o:errorDetails" => [
%{
"detail" => "Error while accessing a resource. Fulfillments can be shipped from only one location when using Multi-Location Inventory.",
"o:errorCode" => "USER_ERROR"
}
],
"status" => 400,
"title" => "Bad Request",
"type" => "<https://www.rfc-editor.org/rfc/rfc9110.html#section-15.5.1>"
}
Note that I want to mark only 1 line as fulfilled (out of two), this is not a problem when both lines belong to the same location. example payload I am sending
%{
shipStatus: %{id: "C"},
status: %{id: "C"},
item: %{
items: [
%{
line: 2,
item: 1111,
orderLine: 2,
quantity: 2,
location: 101
}
]
}
}
Any ideas why it’s happening?