Skip to main content
POST
/
private
/
UpdateOtcQuote
Update OTC Quote
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.

Authorizations

API-Key
string
header
required

The "API-Key" header should contain your API key.

API-Sign
string
header
required

Authenticated requests should be signed with the "API-Sign" header, using a signature generated with your private key, nonce, encoded payload, and URI path.

Body

application/json

Request body for updating the status of an existing OTC quote.

nonce
integer<int64>
required

Nonce used in construction of API-Sign header

quote_id
string<uuid>
required

The unique identifier of the quote to update.

Example:

"00001c47-8f59-4099-b6f8-b637437ef1ab"

status
enum<string>
required

The status of the quote, accepted or rejected.

Available options:
accepted,
rejected
Example:

"accepted"

Response

Update OTC quote result.

Response schema for updating an OTC quote. Contains either a successful result with the quote ID or an error object.

error
string[]
required

Kraken API error

result
object