> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kraken.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Quote Cancel Request

> Authenticated command to cancel an open RFQ.

<Note>Authenticated channel. Connect to: `wss://wss.prime.kraken.com/ws/v1`</Note>

Command used to cancel an open RFQ. Results of this command will be visible in the Quote stream.

## Request

<Tabs>
  <Tab title="Request Schema">
    <ParamField path="reqid" type="number" required>
      Request ID.
    </ParamField>

    <ParamField path="type" type="string" required>
      Command type. Value: `QuoteCancelRequest`
    </ParamField>

    <ParamField path="data" type="array" required>
      Quote cancel request data array.

      <Expandable title="properties">
        <ParamField path="QuoteReqID" type="string" required>
          QuoteReqID from the request to cancel.
        </ParamField>

        <ParamField path="RFQID" type="string" required>
          RFQID to cancel, required and must align with QuoteReqID.
        </ParamField>

        <ParamField path="TransactTime" type="string" required>
          An ISO-8601 UTC string of the form 2019-02-13T05:17:32.000000Z.
        </ParamField>
      </Expandable>
    </ParamField>
  </Tab>

  <Tab title="Example">
    ```json theme={null}
    {
      "reqid": 16,
      "type": "QuoteCancelRequest",
      "data": [
        {
          "QuoteReqID": "8e9540d0-15db-11ec-b5e7-7f4881f01b7d",
          "RFQID": "f47bfb99-4d1e-4179-b62c-a96e83cc93ba",
          "TransactTime": "2021-09-15T04:15:24.581000Z"
        }
      ]
    }
    ```
  </Tab>
</Tabs>
