For the complete documentation index, see llms.txt. This page is also available as Markdown.

PUBLISH Cancel Order

REQUEST

<tr>
  <td>
    * \*op\*\* <span class="ws-data-type ws-small-font">string</span>  <span class="ws-required-tag ws-small-font">required</span>
      Operation code: `cancel_order`
  </td>
</tr>

<tr>
  <td>
    <span class="ws-small-font">data.</span>**order\_id** <span class="ws-data-type ws-small-font">string</span> <span class="ws-required-tag ws-small-font">required</span>
    Order ID to be cancelled. Eg. `0x4c43e0ab72a4edb72dfe4b129148899815d816837b9a7e22d964b884834639f8`
  </td>
</tr>

* \*id\*\* integer Request ID, an arbitrary integer to link requests with responses. Eg. `1`

Example
{
  "id": 1,
  "op": "cancel_order",
  "data": {
    "order_id": "0xa907d8c3037289f5b38c94760c06ae436566e600884d09cbeee2ef2c64b2695d"
  }
}

RESPONSE

* \*id\*\* integer Response ID, an arbitrary integer to link requests with responses. Eg. `1`

Example

Last updated