Accepts or rejects an OTC quote.
API Key Permissions Required: Orders and trades - Create & modify orders
curl --request POST \
--url https://api.kraken.com/0/private/UpdateOtcQuote \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"nonce": 123,
"quote_id": "00001c47-8f59-4099-b6f8-b637437ef1ab",
"status": "accepted"
}
'{
"error": [
"EGeneral:Invalid arguments"
],
"result": {
"quote_id": "00001c47-8f59-4099-b6f8-b637437ef1ab"
}
}Documentation Index
Fetch the complete documentation index at: https://kraken-sandbox.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
The "API-Key" header should contain your API key.
Authenticated requests should be signed with the "API-Sign" header, using a signature generated with your private key, nonce, encoded payload, and URI path.
Request body for updating the status of an existing OTC quote.
Nonce used in construction of API-Sign header
The unique identifier of the quote to update.
"00001c47-8f59-4099-b6f8-b637437ef1ab"
The status of the quote, accepted or rejected.
accepted, rejected "accepted"
curl --request POST \
--url https://api.kraken.com/0/private/UpdateOtcQuote \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"nonce": 123,
"quote_id": "00001c47-8f59-4099-b6f8-b637437ef1ab",
"status": "accepted"
}
'{
"error": [
"EGeneral:Invalid arguments"
],
"result": {
"quote_id": "00001c47-8f59-4099-b6f8-b637437ef1ab"
}
}