Blockchain.com · Schema

ExchangeOrderMassCancelRequestPayload

ExchangeOrderMassCancelRequestPayload schema from Blockchain.com WebSocket APIs

CryptocurrencyBitcoinBlockchain DataExchangeMarket DataTradingPaymentsPublic APIs

Properties

Name Type Description
action string
channel string
symbol string Optional — restrict mass cancel to a single symbol.
View JSON Schema on GitHub

JSON Schema

com-exchange-order-mass-cancel-request-payload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/blockchain/refs/heads/main/json-schema/com-exchange-order-mass-cancel-request-payload-schema.json",
  "title": "ExchangeOrderMassCancelRequestPayload",
  "description": "ExchangeOrderMassCancelRequestPayload schema from Blockchain.com WebSocket APIs",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "const": "OrderMassCancelRequest"
    },
    "channel": {
      "type": "string",
      "const": "trading"
    },
    "symbol": {
      "type": "string",
      "description": "Optional \u2014 restrict mass cancel to a single symbol."
    }
  },
  "required": [
    "action",
    "channel"
  ]
}