Cancel all rfq quotes
For maker, the rfqId is same as the create rfq quote api.
Endpoint
block/rfqs/cancel_all_quotes
Parameters(params)
This endpoint requires no parameters.
Request Example
{
"rid": 30004,
"method": "block/rfqs/cancel_all_quotes"
}
Response(result)
| Name | Type | Description |
|---|---|---|
| blockRfqQuotes | array of objects | Array of Objects with details related to specific quotes |
| > blockRfqId | string | The exchange created unique identifier of the RFQ |
| > quoteId | string | ID of the Block RFQ quote |
| > label | string | User defined label for the Block RFQ quote |
| > code | integer | Indicates whether the cancellation succeeded or failed; 0 denotes a successful cancellation |
| > msg | string | The reason why the cancellation failed |
Response Example
{
"rid": 30004,
"result": {
"blockRfqQuotes": [
{
"blockRfqId": "1758101004486794036565073847892728",
"quoteId": "1758101032337933012337643619290720",
"label": "BybitTestQuote1",
"code": 0,
"msg": ""
}
]
}
}