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"
}
'import requests
url = "https://api.kraken.com/0/private/UpdateOtcQuote"
payload = {
"nonce": 123,
"quote_id": "00001c47-8f59-4099-b6f8-b637437ef1ab",
"status": "accepted"
}
headers = {
"API-Key": "<api-key>",
"API-Sign": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'API-Key': '<api-key>',
'API-Sign': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
nonce: 123,
quote_id: '00001c47-8f59-4099-b6f8-b637437ef1ab',
status: 'accepted'
})
};
fetch('https://api.kraken.com/0/private/UpdateOtcQuote', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.kraken.com/0/private/UpdateOtcQuote"
payload := strings.NewReader("{\n \"nonce\": 123,\n \"quote_id\": \"00001c47-8f59-4099-b6f8-b637437ef1ab\",\n \"status\": \"accepted\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("API-Key", "<api-key>")
req.Header.Add("API-Sign", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"error": [
"EGeneral:Invalid arguments"
],
"result": {
"quote_id": "00001c47-8f59-4099-b6f8-b637437ef1ab"
}
}{
"errors": [
{
"field": null,
"value": null,
"type": "Internal Error",
"msg": "Internal error",
"severity": "E",
"errorClass": "General"
}
]
}Quotes
Update OTC Quote
Accepts or rejects an OTC quote.
API Key Permissions Required: Orders and trades - Create & modify orders
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"
}
'import requests
url = "https://api.kraken.com/0/private/UpdateOtcQuote"
payload = {
"nonce": 123,
"quote_id": "00001c47-8f59-4099-b6f8-b637437ef1ab",
"status": "accepted"
}
headers = {
"API-Key": "<api-key>",
"API-Sign": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'API-Key': '<api-key>',
'API-Sign': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
nonce: 123,
quote_id: '00001c47-8f59-4099-b6f8-b637437ef1ab',
status: 'accepted'
})
};
fetch('https://api.kraken.com/0/private/UpdateOtcQuote', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.kraken.com/0/private/UpdateOtcQuote"
payload := strings.NewReader("{\n \"nonce\": 123,\n \"quote_id\": \"00001c47-8f59-4099-b6f8-b637437ef1ab\",\n \"status\": \"accepted\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("API-Key", "<api-key>")
req.Header.Add("API-Sign", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"error": [
"EGeneral:Invalid arguments"
],
"result": {
"quote_id": "00001c47-8f59-4099-b6f8-b637437ef1ab"
}
}{
"errors": [
{
"field": null,
"value": null,
"type": "Internal Error",
"msg": "Internal error",
"severity": "E",
"errorClass": "General"
}
]
}Authorizations
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.
Body
application/json
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.
Example:
"00001c47-8f59-4099-b6f8-b637437ef1ab"
The status of the quote, accepted or rejected.
Available options:
accepted, rejected Example:
"accepted"
Was this page helpful?