Block customer from online payment
ApiScope: payment.customer.block
API Scope Level: ServiceSubscriberScope
Path Parameters
customerUuid string required
application/json
Request Body required
invoiceGUID string
ccLastFour string
ccType string
cardHolder string
onlinePayment boolean
sendBlockNotification boolean
threeDSAuthentication boolean
Responses
- 200
- 400
- 401
- 500
OK
application/json
Schema
Example (from schema)
Schema
object
{}
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/customer/:customerUuid/block
Request
Request
curl / cURL
curl -L -X POST '/payment/kpayment/v1/customer/:customerUuid/block' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'
python / requests
curl -L -X POST '/payment/kpayment/v1/customer/:customerUuid/block' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'
go / native
curl -L -X POST '/payment/kpayment/v1/customer/:customerUuid/block' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'
nodejs / axios
curl -L -X POST '/payment/kpayment/v1/customer/:customerUuid/block' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'
ruby / Net::HTTP
curl -L -X POST '/payment/kpayment/v1/customer/:customerUuid/block' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'
csharp / RestSharp
curl -L -X POST '/payment/kpayment/v1/customer/:customerUuid/block' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'
php / cURL
curl -L -X POST '/payment/kpayment/v1/customer/:customerUuid/block' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'
java / OkHttp
curl -L -X POST '/payment/kpayment/v1/customer/:customerUuid/block' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'
powershell / RestMethod
curl -L -X POST '/payment/kpayment/v1/customer/:customerUuid/block' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'