Add customer to blacklist
ApiScope: payment.blackList.create
API Scope Level: ServiceSubscriberScope
Path Parameters
customerUuid string required
application/json
Request Body required
paymentDeclines string
isEnabled boolean
departmentUuid string
invoiceGUID string
ccLastFour string
ccType string
cardHolder string
onlinePayment boolean
sendBlockNotification boolean
threeDSAuthentication boolean
Responses
- 200
OK
*/*
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
addedToBlackList boolean
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string",
"errorDescription": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string",
"warningDescription": "string"
}
],
"addedToBlackList": true
}
POST /v4/customers/:customerUuid/online-payment-blacklist
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X POST '/payment/v4/customers/:customerUuid/online-payment-blacklist' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"paymentDeclines": "string",
"isEnabled": true,
"departmentUuid": "string",
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'
python / requests
curl -L -X POST '/payment/v4/customers/:customerUuid/online-payment-blacklist' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"paymentDeclines": "string",
"isEnabled": true,
"departmentUuid": "string",
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'
go / native
curl -L -X POST '/payment/v4/customers/:customerUuid/online-payment-blacklist' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"paymentDeclines": "string",
"isEnabled": true,
"departmentUuid": "string",
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'
nodejs / axios
curl -L -X POST '/payment/v4/customers/:customerUuid/online-payment-blacklist' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"paymentDeclines": "string",
"isEnabled": true,
"departmentUuid": "string",
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'
ruby / Net::HTTP
curl -L -X POST '/payment/v4/customers/:customerUuid/online-payment-blacklist' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"paymentDeclines": "string",
"isEnabled": true,
"departmentUuid": "string",
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'
csharp / RestSharp
curl -L -X POST '/payment/v4/customers/:customerUuid/online-payment-blacklist' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"paymentDeclines": "string",
"isEnabled": true,
"departmentUuid": "string",
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'
php / cURL
curl -L -X POST '/payment/v4/customers/:customerUuid/online-payment-blacklist' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"paymentDeclines": "string",
"isEnabled": true,
"departmentUuid": "string",
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'
java / OkHttp
curl -L -X POST '/payment/v4/customers/:customerUuid/online-payment-blacklist' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"paymentDeclines": "string",
"isEnabled": true,
"departmentUuid": "string",
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'
powershell / RestMethod
curl -L -X POST '/payment/v4/customers/:customerUuid/online-payment-blacklist' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"paymentDeclines": "string",
"isEnabled": true,
"departmentUuid": "string",
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}'