Skip to main content

Run 3DS Rules


ApiScope: payment.rules.3DS
API Scope Level: ServiceSubscriberScope
Request Body required
    invoiceGUID string
    onlinePayment boolean
    paymentAttempt boolean
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
  • ]
  • threeDSecureResponse object
    run3DSRules boolean
    run3DS boolean
    notify boolean
    bypass3DSApproval boolean
    blockOnlinePayment boolean
    cardTypeAvailableOnline string[]
    partiallyPaid boolean
    threeDSApprovalStatus string
    authenticationFailed boolean
POST /kpayment/v1/fire3DSRules

Request

Base URL
/payment
Body required
{
"invoiceGUID": "string",
"onlinePayment": true,
"paymentAttempt": true
}
curl / cURL
curl -L -X POST '/payment/kpayment/v1/fire3DSRules' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"invoiceGUID": "string",
"onlinePayment": true,
"paymentAttempt": true
}'