Skip to main content
POST
/
v1
/
quote-requests
/
{id}
/
cancel
curl -X POST https://api.totalis.trade/v1/quote-requests/1a6d1f06-9d4f-47cb-994b-3bdfbbef7e40/cancel \
  -H "Authorization: Bearer $TOKEN"
# No response body
Cancel an active quote request. All pending market maker quotes are invalidated and the request is removed from the live stream. Returns 204 No Content on success. You can only cancel a quote request while its status is active.

Authentication

Bearer token required. Pass your JWT in the Authorization header.
Authorization: Bearer <jwt>

Path Parameters

id
string
required
The quote request ID (UUID).

Response

Returns 204 No Content with no response body.

Errors

StatusCodeDescription
401UNAUTHORIZEDMissing or invalid JWT.
403FORBIDDENYou do not own this quote request.
404NOT_FOUNDQuote request not found.
409CONFLICTQuote request is already committed, cancelled, or expired.
curl -X POST https://api.totalis.trade/v1/quote-requests/1a6d1f06-9d4f-47cb-994b-3bdfbbef7e40/cancel \
  -H "Authorization: Bearer $TOKEN"
# No response body