Skip to main content

Run pre process for Fraud


ApiScope: payment.fraud.pre.process
API Scope Level: ServiceSubscriberScope
Request Body required
    invoiceGUID string
    cardinalEnabled boolean
    chargebacks int32
    debitCard boolean
    ccLastFour string
    ipAddress string
    run3DSByCardinal boolean
    onlinePayment boolean
    cardType string
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
    errorDescription string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
    warningDescription string
  • ]
  • finalFraudDetectors string[]
    fdpreProcessorResponse object
    fdMode string
    fraudDetectors string
POST /kpayment/v1/fraudPreProcess

Request

Base URL
/payment
Body required
{
"invoiceGUID": "string",
"cardinalEnabled": true,
"chargebacks": 0,
"debitCard": true,
"ccLastFour": "string",
"ipAddress": "string",
"run3DSByCardinal": true,
"onlinePayment": true,
"cardType": "string"
}
curl / cURL
curl -L -X POST '/payment/kpayment/v1/fraudPreProcess' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"invoiceGUID": "string",
"cardinalEnabled": true,
"chargebacks": 0,
"debitCard": true,
"ccLastFour": "string",
"ipAddress": "string",
"run3DSByCardinal": true,
"onlinePayment": true,
"cardType": "string"
}'