Skip to main content

Block customer from online payment


ApiScope: payment.customer.block
API Scope Level: ServiceSubscriberScope
Path Parameters
    customerUuid string required
Request Body required
    invoiceGUID string
    ccLastFour string
    ccType string
    cardHolder string
    onlinePayment boolean
    sendBlockNotification boolean
    threeDSAuthentication boolean
Responses

OK


Schema

    object

POST /kpayment/v1/customer/:customerUuid/block

Request

Base URL
/payment
customerUuid — path required
Body required
{
"invoiceGUID": "string",
"ccLastFour": "string",
"ccType": "string",
"cardHolder": "string",
"onlinePayment": true,
"sendBlockNotification": true,
"threeDSAuthentication": true
}
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
}'