1. Screening
Qeep
  • Screening
    • Screen transaction
      POST
    • Get screening result by ID
      GET
    • Rescreen transaction
      POST
    • List screening requests
      GET
    • Record screening outcome
      POST
  • Schemas
    • ValidationErrorDetail
    • RecordOutcome
    • ErrorDetails
    • ApiErrorResponse
    • ScreeningResult
    • ScreenTransaction
    • ScreeningRequestsList
    • Rescreen
  1. Screening

Record screening outcome

POST
/v1/txn-monitoring/screening/{id}/outcome
Records what the payment system actually did with the transaction after screening returned its verdict (executed vs. stopped). Re-reporting overwrites the previous outcome. Surfaces as the nested outcome object on the screening.

Request

Authorization
or
Path Params

Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Successful response
Bodyapplication/json

🟠400
🟠401
🟠403
🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.qeeptech.com/v1/txn-monitoring/screening//outcome' \
--header 'Content-Type: application/json' \
--data '{
    "outcome": "EXECUTED",
    "reason": "string"
}'
Response Response Example
200 - Example 1
{
    "success": true,
    "data": {},
    "message": "string",
    "meta": {
        "timestamp": "2019-08-24T14:15:22.123Z",
        "requestId": "string",
        "traceId": "string",
        "spanId": "string",
        "path": "string",
        "pagination": {
            "page": 0,
            "limit": 0,
            "total": 0,
            "totalPages": 0,
            "hasNext": true,
            "hasPrevious": true
        }
    }
}
Modified at 2026-07-24 10:21:10
Previous
List screening requests
Next
ValidationErrorDetail
Built with