Skip to main content
GET
/
api
/
preapprovedtransactions
/
{id}
/
screening-review
Get screening review for a QuickScan transaction
curl --request GET \
  --url http://localhost/api/api/preapprovedtransactions/{id}/screening-review \
  --cookie sessionid=
{
  "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",
  "status": "on_hold",
  "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>"
}
This endpoint returns detailed screening review information for a single pre-approved transaction, including:
  • Transaction details (amount, currency, parties, etc.)
  • Counterparty A & B information with subject names
  • NameScreen results for both parties
  • NameScreenHits grouped by engine with full hit details

Authorizations

sessionid
string
cookie
required

Path Parameters

id
integer
required

A unique integer value identifying this pre approved transaction.

Response

200 - application/json

Serializer for PreApprovedTransaction model.

NOTE: name_screen_cpa and name_screen_cpb are now queried dynamically via client_transaction_id (no longer FK fields). Maintains backward compatibility.

id
integer
required
client_transaction_id
string
required

Client's transaction ID (unique identifier)

Maximum string length: 255
cp_a
object
required
cp_b
object
required
name_screen_cpa
string
required
name_screen_cpb
string
required
has_true_hit_cpa
string
required
has_true_hit_cpb
string
required
has_unmarked_hit_cpa
string
required
has_unmarked_hit_cpb
string
required
created_on
string<date-time>
required
modified_on
string<date-time>
required
status
enum<string>

Status of the pre-approval workflow

  • on_hold - on_hold
  • approved - approved
  • rejected - rejected
  • not_screened - not_screened
  • cleared - cleared
Available options:
on_hold,
approved,
rejected,
not_screened,
cleared
transaction_timestamp
string<date-time> | null
transaction_type
string
Maximum string length: 255
amount
number<double> | null
transaction_currency
string | null

Transaction currency code

payment_mode
string
Maximum string length: 255
approved_on
string<date-time> | null
approved_by
integer | null
assignee
integer | null

User assigned to review this transaction

comment
string

Review comment or decision rationale