How to cancel an Order
You can cancel an Order through our Cancel Order endpoint, the request should look something like this:
[
{
"relationalOrderId": "string",
"relationalOperationalId": "5",
"cancellationId": "string",
"cancellationDescription": "string",
"cancellationDate": "string",
}
]Fields
Name | Description | Req. |
|---|---|---|
orderNumbers | Order Id in WMS. | No |
relationalOrderId | Order Id in ERP. | No |
cancellationId | Cancellation reason Id. | No |
cancellationDescription | Cancellation reason description. | No |
cancellationDate | Cancellation date. | Yes |
You must pass eitherorderNumbersorrelationalOrderId.
You must pass eithercancellationIdorcancellationDescription.
If you passcancellationIdwe will look for a cancellation reason with this Id.
If you passcancellationDescriptionwe will look for a cancellation reason with this description, if not found we will create it.
Updated 9 months ago