Run 3DS Rules
ApiScope: payment.rules.3DS
API Scope Level: ServiceSubscriberScope
application/json
Request Body required
invoiceGUID string
onlinePayment boolean
paymentAttempt boolean
Responses
- 200
- 400
- 401
- 500
OK
application/json
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
threeDSecureResponse object
threeDSApprovalStatus string
authenticationFailed boolean
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string",
"errorDescription": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string",
"warningDescription": "string"
}
],
"threeDSecureResponse": {
"run3DSRules": true,
"run3DS": true,
"notify": true,
"bypass3DSApproval": true,
"blockOnlinePayment": true,
"cardTypeAvailableOnline": [
"string"
],
"partiallyPaid": true
},
"threeDSApprovalStatus": "string",
"authenticationFailed": true
}
Bad Request
*/*
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string",
"errorDescription": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string",
"warningDescription": "string"
}
]
}
Unauthorized
*/*
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string",
"errorDescription": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string",
"warningDescription": "string"
}
]
}
Internal Server Error
*/*
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string",
"errorDescription": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string",
"warningDescription": "string"
}
]
}
POST /kpayment/v1/fire3DSRules
Request
Request
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
}'
python / requests
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
}'
go / native
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
}'
nodejs / axios
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
}'
ruby / Net::HTTP
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
}'
csharp / RestSharp
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
}'
php / 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
}'
java / OkHttp
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
}'
powershell / RestMethod
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
}'