Blockchain.com · Schema

ExchangeCancelOrderRequestPayload

ExchangeCancelOrderRequestPayload schema from Blockchain.com WebSocket APIs

CryptocurrencyBitcoinBlockchain DataExchangeMarket DataTradingPaymentsPublic APIs

Properties

Name Type Description
action string
channel string
orderID string Exchange-assigned order id (FIX 37).
View JSON Schema on GitHub

JSON Schema

com-exchange-cancel-order-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-cancel-order-request-payload-schema.json",
  "title": "ExchangeCancelOrderRequestPayload",
  "description": "ExchangeCancelOrderRequestPayload schema from Blockchain.com WebSocket APIs",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "const": "CancelOrderRequest"
    },
    "channel": {
      "type": "string",
      "const": "trading"
    },
    "orderID": {
      "type": "string",
      "description": "Exchange-assigned order id (FIX 37)."
    }
  },
  "required": [
    "action",
    "channel",
    "orderID"
  ]
}