List all QuickScan transactions
curl --request GET \
--url http://localhost/api/api/preapprovedtransactions \
--cookie sessionid=import requests
url = "http://localhost/api/api/preapprovedtransactions"
headers = {"cookie": "sessionid="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'sessionid='}};
fetch('http://localhost/api/api/preapprovedtransactions', 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 => "http://localhost/api/api/preapprovedtransactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_COOKIE => "sessionid=",
]);
$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 := "http://localhost/api/api/preapprovedtransactions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("cookie", "sessionid=")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost/api/api/preapprovedtransactions")
.header("cookie", "sessionid=")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost/api/api/preapprovedtransactions")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["cookie"] = 'sessionid='
response = http.request(request)
puts response.read_body{
"count": 123,
"results": [
{
"id": 123,
"client_transaction_id": "<string>",
"cp_a": {
"client_subject_id": "<string>",
"subject_name": "<string>"
},
"cp_b": {
"client_subject_id": "<string>",
"subject_name": "<string>"
},
"name_screen_cpa": "<string>",
"name_screen_cpb": "<string>",
"has_related_case": "<string>",
"related_cases": "<string>",
"has_true_hit_cpa": "<string>",
"has_true_hit_cpb": "<string>",
"has_unmarked_hit_cpa": "<string>",
"has_unmarked_hit_cpb": "<string>",
"created_on": "2023-11-07T05:31:56Z",
"modified_on": "2023-11-07T05:31:56Z",
"transaction_timestamp": "2023-11-07T05:31:56Z",
"transaction_type": "<string>",
"amount": 123,
"transaction_currency": "<string>",
"payment_mode": "<string>",
"approved_on": "2023-11-07T05:31:56Z",
"approved_by": 123,
"assignee": 123,
"comment": "<string>"
}
],
"next": "http://api.example.org/accounts/?offset=400&limit=100",
"previous": "http://api.example.org/accounts/?offset=200&limit=100"
}Transaction Screening
List all QuickScan transactions
ViewSet for PreApprovedTransaction with screening workflow support
GET
/
api
/
preapprovedtransactions
List all QuickScan transactions
curl --request GET \
--url http://localhost/api/api/preapprovedtransactions \
--cookie sessionid=import requests
url = "http://localhost/api/api/preapprovedtransactions"
headers = {"cookie": "sessionid="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'sessionid='}};
fetch('http://localhost/api/api/preapprovedtransactions', 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 => "http://localhost/api/api/preapprovedtransactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_COOKIE => "sessionid=",
]);
$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 := "http://localhost/api/api/preapprovedtransactions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("cookie", "sessionid=")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost/api/api/preapprovedtransactions")
.header("cookie", "sessionid=")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost/api/api/preapprovedtransactions")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["cookie"] = 'sessionid='
response = http.request(request)
puts response.read_body{
"count": 123,
"results": [
{
"id": 123,
"client_transaction_id": "<string>",
"cp_a": {
"client_subject_id": "<string>",
"subject_name": "<string>"
},
"cp_b": {
"client_subject_id": "<string>",
"subject_name": "<string>"
},
"name_screen_cpa": "<string>",
"name_screen_cpb": "<string>",
"has_related_case": "<string>",
"related_cases": "<string>",
"has_true_hit_cpa": "<string>",
"has_true_hit_cpb": "<string>",
"has_unmarked_hit_cpa": "<string>",
"has_unmarked_hit_cpb": "<string>",
"created_on": "2023-11-07T05:31:56Z",
"modified_on": "2023-11-07T05:31:56Z",
"transaction_timestamp": "2023-11-07T05:31:56Z",
"transaction_type": "<string>",
"amount": 123,
"transaction_currency": "<string>",
"payment_mode": "<string>",
"approved_on": "2023-11-07T05:31:56Z",
"approved_by": 123,
"assignee": 123,
"comment": "<string>"
}
],
"next": "http://api.example.org/accounts/?offset=400&limit=100",
"previous": "http://api.example.org/accounts/?offset=200&limit=100"
}Authorizations
Query Parameters
Number of results to return per page.
The initial index from which to return the results.
⌘I
