There is some problem on deleting orders today. Orders are in status OPEN but when we try to delete them we get 500 Internal Server Error without any details. It happens to multiple orders for multiple merchants.
Example:
GET https://api.clover.com/v3/merchants/XXX/orders/YYY
Response:
{
"href": "https://www.clover.com/v3/merchants/XXX/orders/YYY",
"id": "YYY",
"currency": "USD",
"employee": {
"id": "ZZZ"
},
"total": 2379,
"paymentState": "OPEN",
"note": "PENDING ORDER #order-notes: ",
"orderType": {
"id": "VVV"
},
"taxRemoved": false,
"isVat": false,
"state": "open",
"manualTransaction": false,
"groupLineItems": false,
"testMode": false,
"payType": "FULL",
"createdTime": 1597879779000,
"clientCreatedTime": 1597879779000,
"modifiedTime": 1597879782000
}
DELETE https://api.clover.com/v3/merchants/XXX/orders/YYY
Response:
{
"message": "500 Internal Server Error"
}