Batch Update PO Status
PUT /v1/purchase-order/batch/status
Updates the status of multiple purchase orders in a single operation. You provide a list of purchase order identifiers and the status action to apply. The endpoint processes all orders and returns information about the batch operation results.
Request Body
{
"ids": [
"6901dd642089746884b5a886"
],
// "accept", "cancel", "deliver", "confirm"
"action": "confirm"
}