Skip to main content
POST
/
markets
/
orders
/
cancel
Cancel Order
curl --request POST \
  --url https://www.aionmarket.com/bvapi/markets/orders/cancel \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "orderId": "<string>",
  "walletAddress": "<string>"
}
'
{
  "orderId": "<string>",
  "cancelled": true
}

Authorizations

Authorization
string
header
default:YOUR_API_KEY
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
orderId
string
required
walletAddress
string

Response

200 - application/json

Cancellation accepted

orderId
string
cancelled
boolean