Order Status Controller

Transfer orders from one status to another

Transfer all orders from a source status to a target status. Both statuses must exist and be different.

post/order-status/transfer

Request body

fromStatusIdnumber required

Source order status ID (orders with this status will be transferred)

toStatusIdnumber required

Target order status ID (orders will be transferred to this status)

Example request

{
  "fromStatusId": 1,
  "toStatusId": 2
}

Response

Orders transferred successfully

Changes

No recorded changes to this endpoint across all 1 revision of this API.