Skip to main content

Refresh RFQ Interest

POST /v1/api/refreshInterest

The system will time out an indicative order after a set timeout period, currently 30 minutes, so to keep a multi leg indicative order active the user must periodically send a refresh interest message.

Each time a refresh interest message is sent, the timeout period will be reset.

Headers

Header FieldTypeComments
credentials_secretJWTCreated by user for validation

Parameters

Passed in the query string

NameTypeComments
order_idstringExchange generated order id
client_order_idstringUnique Order Id generated by the client

Refresh Interest Response

NameTypeComments
timestampintegerμs utc timestamp when the rfq interest was refreshed
order_idstringExchange generated order id
client_order_idstringUnique Order Id generated by the client
reasonstring'success'

Examples

Success

{
"refresh_response": {
"order_id": "9553968",
"client_order_id": "",
"timestamp": "1670249371049981",
"reason": "success"
}
}

Failure

{
"refresh_response": {
"order_id": "4",
"client_order_id": "",
"timestamp": "1653908560434790",
"reason": "exchange order id or client order id not found in order cache"
}
}
{
"error": {
"error_code": "14",
"message": "auth server rejected the authenticate request, Unauthorized"
}
}