cURL
curl --request POST \ --url https://pm-t1.bxingupdate.com/bvapi/markets/orders/cancel-market \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "venue": "polymarket", "walletAddress": "<string>" } '
{ "code": 200, "message": "success", "data": { "canceled": [ "<string>" ], "notCanceled": {}, "syncedCount": 123 } }
Cancel all open orders in a specific market.
polymarket
Show CancelAllOrdersResponse
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Trading venue (default: polymarket)
50
Wallet address for multi-wallet scenarios (0x-prefixed, 40 hex chars)
^0x[a-fA-F0-9]{40}$
Bulk cancellation accepted
200
"success"
Show child attributes