Replace a Order in the shard

Replace a Order in the shard

POST
/node/shards/reorder
/node/shards/reorder

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/reorder" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "orderId": 1
  }'

Ok

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