Revoke a wallet link
curl --request DELETE \
--url https://api.qbank.cl/platform/v1/wallet-links/{linkID} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.qbank.cl/platform/v1/wallet-links/{linkID}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.qbank.cl/platform/v1/wallet-links/{linkID}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.qbank.cl/platform/v1/wallet-links/{linkID}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.qbank.cl/platform/v1/wallet-links/{linkID}"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.qbank.cl/platform/v1/wallet-links/{linkID}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/wallet-links/{linkID}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"link": {
"link_id": "d52e7b91-4c68-4f89-1b23-5d7e9f0a2c46",
"account_id": "ae8c1f02-3b45-4c67-9d12-8f0e5a6b7c8d",
"chain": "eth",
"address": "0x71C7656EC7ab88b098defB751B7401B5f6d8976F",
"status": "revoked",
"expires_at": "2026-08-21T14:13:11Z",
"created_at": "2026-08-21T14:03:11Z",
"proof_id": "c41d2a88-7f3e-4b21-9c6d-2e8f1a5b7d90",
"verified_at": "2026-08-21T14:05:41Z",
"revoked_at": "2026-08-21T18:12:03Z"
}
}{
"error": "not_found",
"message": "wallet link not found"
}{
"error": "invalid_state",
"message": "the wallet link cannot be revoked in its current state"
}Revoke a wallet link
Revokes a wallet link. The external wallet keeps its custody; only the ownership attestation is revoked.
DELETE
/
v1
/
wallet-links
/
{linkID}
Revoke a wallet link
curl --request DELETE \
--url https://api.qbank.cl/platform/v1/wallet-links/{linkID} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.qbank.cl/platform/v1/wallet-links/{linkID}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.qbank.cl/platform/v1/wallet-links/{linkID}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.qbank.cl/platform/v1/wallet-links/{linkID}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.qbank.cl/platform/v1/wallet-links/{linkID}"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.qbank.cl/platform/v1/wallet-links/{linkID}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/wallet-links/{linkID}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"link": {
"link_id": "d52e7b91-4c68-4f89-1b23-5d7e9f0a2c46",
"account_id": "ae8c1f02-3b45-4c67-9d12-8f0e5a6b7c8d",
"chain": "eth",
"address": "0x71C7656EC7ab88b098defB751B7401B5f6d8976F",
"status": "revoked",
"expires_at": "2026-08-21T14:13:11Z",
"created_at": "2026-08-21T14:03:11Z",
"proof_id": "c41d2a88-7f3e-4b21-9c6d-2e8f1a5b7d90",
"verified_at": "2026-08-21T14:05:41Z",
"revoked_at": "2026-08-21T18:12:03Z"
}
}{
"error": "not_found",
"message": "wallet link not found"
}{
"error": "invalid_state",
"message": "the wallet link cannot be revoked in its current state"
}Authorizations
Session JWT (from register/login) or API key (pk_...).
X-API-Key: <token> is accepted as an alternative header.
Path Parameters
Response
Link revoked.
External wallet (custody=client) linked to the account by signing a nonce challenge. The challenge expires 10 minutes after issuance; once the wallet is linked, the link stays active until it is revoked.
Show child attributes
Show child attributes
Last modified on August 22, 2026
⌘I