Skip to main content
GET
/
api
/
preapprovedtransactions
List all QuickScan transactions
curl --request GET \
  --url http://localhost/api/api/preapprovedtransactions \
  --cookie sessionid=
{
  "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",
      "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>"
    }
  ],
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100"
}
By calling this API, you will be able to retrieve all pre-approved transactions. The results are paginated. You may also filter by status using the following endpoints:
  • Active Transactions — Retrieve pre-approved transactions that are currently active (e.g., on_hold).
  • Inactive Transactions — Retrieve pre-approved transactions that are inactive (e.g., approved, rejected).

Authorizations

sessionid
string
cookie
required

Query Parameters

limit
integer

Number of results to return per page.

offset
integer

The initial index from which to return the results.

Response

200 - application/json
count
integer
required
Example:

123

results
object[]
required
next
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=400&limit=100"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=200&limit=100"