Skip to content

Update Cancelled Quantity

Update the cancelled quantity for a specific product in a shipment line.

HTTP Method POST

Path /inbound/shipmentLine/updateCancelledQuantity

  • shipmentNumber (string, required) - The shipment number
  • productId (string, required) - The product identifier
  • quantity (integer, required) - The cancelled quantity

Returns a string response indicating the operation result.

Terminal window
curl -X POST \
"https://api.wms.example.com/inbound/shipmentLine/updateCancelledQuantity?shipmentNumber=SHP-2024-001234&productId=PROD-ABC123&quantity=5" \
-H "Authorization: Bearer YOUR_API_KEY"