Market Maker
Withdraw Quote
Withdraw your active quote from a quote request before the user commits it.
DELETE
Withdraw your active quote from a quote request. If the quote has already expired naturally, the response indicates
already_expired instead of returning an error.
Withdraw only when you want to retract a quote on the current version that you no longer want to honor — for example, your price moved before the user committed. You do not need to withdraw when the request changes
version: your prior-version quote is invalidated automatically. To quote the new version, just submit again with the new request_version and request_hash.Authentication
API key required. Pass your market maker API key in theX-API-Key header.
Path Parameters
The quote request ID (UUID).
Request Body (optional)
The request version your quote was submitted for. Defaults to the current version if omitted.
The request hash your quote was submitted for. Defaults to the current hash if omitted.
Response
Returns204 No Content when the quote is successfully withdrawn.
If the quote had already expired naturally, returns 200 OK:
Errors
| Status | Code | Description |
|---|---|---|
| 401 | UNAUTHORIZED | Missing or invalid API key. |
| 404 | NOT_FOUND | Quote request not found. |
| 409 | CONFLICT | No active quote to withdraw, request expired, no longer active, or version mismatch. See details.reason. |
