Force Cancel Order

Force Cancel Order

POST
/node/shards/force-cancel
/node/shards/force-cancel

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

Request Body

application/jsonRequired

orderId
Required
number

Order Id

curl -X POST "https://api.t4b.top/node/shards/force-cancel" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "orderId": 1
  }'

Ok

{
  "data": {
    "success": true,
    "orderId": 0
  },
  "statusCode": 200
}