Cancel all rfq
For taker.
Endpoint
block/rfqs/cancel_all_rfq
Parameters(params)
This endpoint requires no parameters.
Request Example
{
"rid": 20004,
"method": "block/rfqs/cancel_all_rfq"
}
Response(result)
| Name | Type | Description |
|---|---|---|
| blockRfqs | Array of Objects | Array of Objects with details related to specific Instruments. |
| > blockRfqId | string | The exchange created unique identifier of the RFQ. |
| > label | string | RFQ creator label of the RFQ. |
| > code | int | Indicates whether the cancellation succeeded or failed; 0 denotes a successful cancellation. |
| > msg | string | The reason why the cancellation failed. |
Response Example
{
"rid": 20004,
"result": {
"blockRfqs": [
{
"blockRfqId": "175801218933050023340025237516627",
"label": "TakerTeststrategy123",
"code": 0,
"msg": ""
}
]
}
}