Re-run an AML screening
curl --request POST \
--url https://api.qbank.cl/platform/v1/aml/rescreen \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"idempotency_key": "aml-rescreen-2026-07-12"
}
'import requests
url = "https://api.qbank.cl/platform/v1/aml/rescreen"
payload = { "idempotency_key": "aml-rescreen-2026-07-12" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({idempotency_key: 'aml-rescreen-2026-07-12'})
};
fetch('https://api.qbank.cl/platform/v1/aml/rescreen', 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/aml/rescreen",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'idempotency_key' => 'aml-rescreen-2026-07-12'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.qbank.cl/platform/v1/aml/rescreen"
payload := strings.NewReader("{\n \"idempotency_key\": \"aml-rescreen-2026-07-12\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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))
}HttpResponse<String> response = Unirest.post("https://api.qbank.cl/platform/v1/aml/rescreen")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"idempotency_key\": \"aml-rescreen-2026-07-12\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/aml/rescreen")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"idempotency_key\": \"aml-rescreen-2026-07-12\"\n}"
response = http.request(request)
puts response.read_body{
"screening_id": "b2c3d4e5-f6a7-4b8c-9d0e-1f2a3b4c5d6e",
"kind": "rescreen",
"service": "compliance_rescreen",
"risk": "low",
"screening_fee": "1.000000",
"fee_asset": "USDT",
"idempotency_key": "aml-rescreen-2026-07-12",
"created_at": "2026-07-12T19:00:00Z",
"result": {
"customer_id": "e1d2c3b4-a596-8778-695a-4b3c2d1e0f9a",
"status": "completed",
"screening_result": "no_hits"
}
}{
"error": "idempotency_key_required",
"message": "provide idempotency_key (body or Idempotency-Key header)"
}{
"error": "unauthorized",
"message": "invalid or missing credentials"
}{
"error": "insufficient_funds",
"message": "account balance is not enough for this operation"
}{
"error": "no_screening",
"message": "account has no AML screening to rescreen"
}Re-run an AML screening
Re-runs the account’s screening. Requires a prior screening. Bills the compliance_rescreen fee if configured; refunded on upstream failure. Each rescreen is stored in the audit history (GET /v1/aml/screenings). idempotency_key is required — replaying with the same key returns the original rescreen with idempotency_hit true and never charges twice.
POST
/
v1
/
aml
/
rescreen
Re-run an AML screening
curl --request POST \
--url https://api.qbank.cl/platform/v1/aml/rescreen \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"idempotency_key": "aml-rescreen-2026-07-12"
}
'import requests
url = "https://api.qbank.cl/platform/v1/aml/rescreen"
payload = { "idempotency_key": "aml-rescreen-2026-07-12" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({idempotency_key: 'aml-rescreen-2026-07-12'})
};
fetch('https://api.qbank.cl/platform/v1/aml/rescreen', 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/aml/rescreen",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'idempotency_key' => 'aml-rescreen-2026-07-12'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.qbank.cl/platform/v1/aml/rescreen"
payload := strings.NewReader("{\n \"idempotency_key\": \"aml-rescreen-2026-07-12\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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))
}HttpResponse<String> response = Unirest.post("https://api.qbank.cl/platform/v1/aml/rescreen")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"idempotency_key\": \"aml-rescreen-2026-07-12\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/aml/rescreen")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"idempotency_key\": \"aml-rescreen-2026-07-12\"\n}"
response = http.request(request)
puts response.read_body{
"screening_id": "b2c3d4e5-f6a7-4b8c-9d0e-1f2a3b4c5d6e",
"kind": "rescreen",
"service": "compliance_rescreen",
"risk": "low",
"screening_fee": "1.000000",
"fee_asset": "USDT",
"idempotency_key": "aml-rescreen-2026-07-12",
"created_at": "2026-07-12T19:00:00Z",
"result": {
"customer_id": "e1d2c3b4-a596-8778-695a-4b3c2d1e0f9a",
"status": "completed",
"screening_result": "no_hits"
}
}{
"error": "idempotency_key_required",
"message": "provide idempotency_key (body or Idempotency-Key header)"
}{
"error": "unauthorized",
"message": "invalid or missing credentials"
}{
"error": "insufficient_funds",
"message": "account balance is not enough for this operation"
}{
"error": "no_screening",
"message": "account has no AML screening to rescreen"
}Authorizations
Session JWT (from register/login) or API key (pk_...).
X-API-Key: <token> is accepted as an alternative header.
Body
application/json
Required (the rescreen charges a fee). Also accepted as the Idempotency-Key header.
Response
Rescreen result stored locally.
Last modified on July 18, 2026
⌘I