Skip to main content

Run Payisland Rules


ApiScope: payment.rules.payisland
API Scope Level: ServiceSubscriberScope
Request Body required
    invoiceGUID string
    ccLastFour string
    ipAddress string
    onlinePayment boolean
    customerFirstName string
    customerLastName string
    cardholderFirstName string
    cardholderLastName string
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
  • ]
  • payislandResponse object
    cardTypeAvailableOnline string[]
    blockOnlinePayment boolean
    runPayislandRules boolean
    customerBlocked boolean
    declinePayment boolean
    sendToGateway boolean
    sendNotification boolean
POST /kpayment/v1/firePayislandRules

Request

Base URL
/payment
Body required
{
"invoiceGUID": "string",
"ccLastFour": "string",
"ipAddress": "string",
"onlinePayment": true,
"customerFirstName": "string",
"customerLastName": "string",
"cardholderFirstName": "string",
"cardholderLastName": "string"
}
curl / cURL
curl -L -X POST '/payment/kpayment/v1/firePayislandRules' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"invoiceGUID": "string",
"ccLastFour": "string",
"ipAddress": "string",
"onlinePayment": true,
"customerFirstName": "string",
"customerLastName": "string",
"cardholderFirstName": "string",
"cardholderLastName": "string"
}'