Get a dispute
curl --request GET \
--url https://api.qbank.cl/platform/v1/qscore/disputes/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.qbank.cl/platform/v1/qscore/disputes/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.qbank.cl/platform/v1/qscore/disputes/{id}', 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/qscore/disputes/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
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/qscore/disputes/{id}"
req, _ := http.NewRequest("GET", 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.get("https://api.qbank.cl/platform/v1/qscore/disputes/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/qscore/disputes/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"dispute_id": "6a1c4e92-3b7d-4f51-9e82-1c7f3a5d8b64",
"subject_id": "8f5fb0d2-1d45-4a0e-9d5c-2d39f2b7a112",
"report_id": "3f5c9f2d-7d21-4b8c-9a2d-2d5f6a1b8c01",
"record_source": "res_chile",
"record_ref": "BOL-2026-04512",
"reason": "The reported default was paid in full on 2026-07-30.",
"status": "under_review",
"resolution_note": "Under review with the data source.",
"created_by": "5f9d2c10-3e8b-4a1d-9c7a-1d2f3a4b5c6d",
"created_at": "2026-08-08T16:11:40Z"
}{
"error": "not_found",
"message": "not found"
}Get a dispute
Returns the detail and current status of an ARCO dispute owned
by your account. A dispute owned by another account returns 404 not_found (ownership isolation).
GET
/
v1
/
qscore
/
disputes
/
{id}
Get a dispute
curl --request GET \
--url https://api.qbank.cl/platform/v1/qscore/disputes/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.qbank.cl/platform/v1/qscore/disputes/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.qbank.cl/platform/v1/qscore/disputes/{id}', 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/qscore/disputes/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
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/qscore/disputes/{id}"
req, _ := http.NewRequest("GET", 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.get("https://api.qbank.cl/platform/v1/qscore/disputes/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/qscore/disputes/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"dispute_id": "6a1c4e92-3b7d-4f51-9e82-1c7f3a5d8b64",
"subject_id": "8f5fb0d2-1d45-4a0e-9d5c-2d39f2b7a112",
"report_id": "3f5c9f2d-7d21-4b8c-9a2d-2d5f6a1b8c01",
"record_source": "res_chile",
"record_ref": "BOL-2026-04512",
"reason": "The reported default was paid in full on 2026-07-30.",
"status": "under_review",
"resolution_note": "Under review with the data source.",
"created_by": "5f9d2c10-3e8b-4a1d-9c7a-1d2f3a4b5c6d",
"created_at": "2026-08-08T16:11:40Z"
}{
"error": "not_found",
"message": "not found"
}Last modified on August 22, 2026
⌘I