OpenAPI 3.0.0raw.githubusercontent.com2026-08-12123173410.4 KB

0574c98df104

Rfqs

Delete RFQ

Queues cancellation of an RFQ.

Cancellation is asynchronous. Subscribe to the private WebSocket channel rfq before sending the request. A 202 Accepted response contains a Paradex request_id and confirms only that the command was queued. The later WebSocket RESULT event with the same request_id reports whether the venue accepted the cancellation. RFQ lifecycle events report the eventual closed state.

The rfq_id is the venue-issued identifier returned by a successful create result or by the RFQ list endpoint.

delete/rfqs/{rfq_id}

Path parameters

rfq_idstring required

Paradigm-issued RFQ id

Response

Accepted

accepted_atinteger

Unix milliseconds when the request was queued

request_idstring

request_id identifies this request. It is echoed on the RESULT event delivered later on the WebSocket rfq channel, so a client with several requests in flight can match each outcome to the request that caused it. On Create it is the only identifier available until the venue issues the rfq_id.

Example response

{
  "accepted_at": 1640995200000,
  "request_id": "1739923200000000000"
}