I created an automic order and later made payment using the network pay display app. The status of the order created after payment was changed from “open” to “paid.” I confirmed that the response came as "200ok" and the order state also came as "paid". And when I looked up the order list of the store registered in sandbox.dev.clover, the order status that had been changed to "paid" was still set to "open". Why can't I change my order status?
POST https://sandbox.dev.clover.com/v3/merchants/{mid}/orders/{order_id}
Res : 200ok
{
"href": "https://sandbox.dev.clover.com/v3/merchants/{mid}/orders/{order_id}",
"id": "order_id",
"currency": "USD",
"employee": {
"id": "{employee_id}"
},
"total": 3300,
"taxRemoved": false,
"isVat": false,
"state": "paid",
"manualTransaction": false,
"groupLineItems": false,
"testMode": false,
"createdTime": 1705025484000,
"clientCreatedTime": 1705025484000,
"modifiedTime": 1705033356000
}