Cancel RFQ Quote
Cancel exactly one open quote. For maker only.
Endpoint
block/rfqs/cancel_quote
Parameters
| Parameter |
Type |
Required |
Description |
| quoteId |
string |
false |
ID of the Block RFQ quote |
| accountId |
long |
true |
Signalplus account ID |
Request Example
{
"rid": 2428745811851850000,
"method": "block/rfqs/cancel_quote",
"params": {
"quoteId": "864691128866890245",
"accountId": 10003732
}
}
Response
| Name |
Type |
Description |
| quoteId |
string |
ID of the Block RFQ quote |
| blockRfqId |
string |
ID of the Block RFQ |
| lastUpdatedAt |
long |
Timestamp of the last update of the quote (milliseconds since the UNIX epoch) |
| label |
string |
The user created label for the order |
| filledQuantity |
string |
Filled amount of the quote. For perpetual and futures the filled_amount is in USD units, for options - in units or corresponding cryptocurrency contracts, e.g., BTC or ETH |
| executionInstruction |
string |
Execution instruction of the quote |
| createdAt |
long |
The time in UNIX nanoseconds since the epoch when the Order was created |
| quantity |
string |
The total size of the Quote, denominated in the clearingCurrency of the RFQ |
| legs |
Array of Objects |
The composite Instrument legs of the RFQ |
| > instrumentName |
string |
The exchange instrument name |
| > ratio |
int |
The relative multiplier applied to the quantity of the Instrument's amount relative to the amount of the RFQ |
| > side |
string |
The direction of the composite leg relative to the RFQ. Valid values: buy, sell |
| > price |
string |
The price of the Instrument leg, denominated in the quoteCurrency of the RFQ |
| > quantity |
string |
The total quantity for this leg |
| hedge |
object |
Hedge leg of the quote |
| > instrumentName |
string |
Instrument name |
| > price |
string |
The price of the Instrument leg, denominated in the quoteCurrency of the RFQ |
| > quantity |
string |
This value multiplied by the ratio of a leg gives trade size on that leg |
| > side |
string |
The direction of the Order. Valid values: buy, sell |
| price |
string |
The total strategy price of the Quote, denominated in the quoteCurrency of the RFQ |
| side |
string |
The direction of the Quote. Valid values: buy, sell |
| status |
string |
The availability of the Quote for the user to action |
| statusReason |
string |
Reason of quote cancellation |
Response Example
{
"rid": 2428745811851850000,
"result": {
"quoteId": "864691128866890245",
"blockRfqId": "792633537032428205",
"label": "3205594056959773919",
"lastUpdatedAt": 1759046336072,
"filledQuantity": "0",
"executionInstruction": "all_or_none",
"createdAt": 1759046335673,
"quantity": "0.01",
"legs": [
{
"instrumentName": "BTC-USDC-20251226-160000-P",
"ratio": 69,
"side": "sell",
"quantity": "0.69",
"price": "629"
},
{
"instrumentName": "BTC-USDC-20251226-160000-C",
"ratio": 79,
"side": "sell",
"quantity": "0.79",
"price": "416"
},
{
"instrumentName": "BTC-USDC-20251226-140000-P",
"ratio": 15,
"side": "buy",
"quantity": "0.15",
"price": "594"
}
],
"hedge": {
"instrumentName": "BTC-USDC-20251226",
"quantity": "0.1",
"side": "buy",
"price": "110000"
},
"price": "-67355",
"side": "buy",
"status": "cancelled",
"statusReason": "Cancelled by user"
}
}