fireFeesRules
fireFeesRules
application/json
Request Body required
fetchSurcharge boolean
fetchApplicationFee boolean
dealerId int64
tenderType string
Possible values: [CREDIT
, DEBIT
, CASH
, ACH
]
cardType string
Possible values: [VISA
, MAST
, DISC
, AMEX
, DINER
, JCB
]
transactionDepartment string
Possible values: [SERVICE
, PARTS
, SALES
, BODYSHOP
, LOANER
, FINANCE
, MANAGEMENT
]
paymentType string
Possible values: [ONLINE
, MANUAL
, RETAIL
]
dealerUuid string
Responses
- 200
- 400
- 401
- 500
OK
application/json
Schema
Example (from schema)
Schema
surchargeRulesResponse object
applicationFeeResponse object
applicationFeeRulesResponse object
{
"surchargeRulesResponse": {
"maxSurcharge": 0,
"feeType": "PERCENTAGE",
"feeValue": 0
},
"applicationFeeResponse": {
"feeType": "string",
"feeValue": 0
},
"applicationFeeRulesResponse": {
"feeType": "string",
"feeValue": 0
}
}
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/rules/fees
Request
Request
curl / cURL
curl -L -X POST '/payment/kpayment/v1/rules/fees' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"fetchSurcharge": true,
"fetchApplicationFee": true,
"dealerId": 0,
"tenderType": "CREDIT",
"cardType": "VISA",
"transactionDepartment": "SERVICE",
"paymentType": "ONLINE",
"dealerUuid": "string"
}'
python / requests
curl -L -X POST '/payment/kpayment/v1/rules/fees' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"fetchSurcharge": true,
"fetchApplicationFee": true,
"dealerId": 0,
"tenderType": "CREDIT",
"cardType": "VISA",
"transactionDepartment": "SERVICE",
"paymentType": "ONLINE",
"dealerUuid": "string"
}'
go / native
curl -L -X POST '/payment/kpayment/v1/rules/fees' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"fetchSurcharge": true,
"fetchApplicationFee": true,
"dealerId": 0,
"tenderType": "CREDIT",
"cardType": "VISA",
"transactionDepartment": "SERVICE",
"paymentType": "ONLINE",
"dealerUuid": "string"
}'
nodejs / axios
curl -L -X POST '/payment/kpayment/v1/rules/fees' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"fetchSurcharge": true,
"fetchApplicationFee": true,
"dealerId": 0,
"tenderType": "CREDIT",
"cardType": "VISA",
"transactionDepartment": "SERVICE",
"paymentType": "ONLINE",
"dealerUuid": "string"
}'
ruby / Net::HTTP
curl -L -X POST '/payment/kpayment/v1/rules/fees' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"fetchSurcharge": true,
"fetchApplicationFee": true,
"dealerId": 0,
"tenderType": "CREDIT",
"cardType": "VISA",
"transactionDepartment": "SERVICE",
"paymentType": "ONLINE",
"dealerUuid": "string"
}'
csharp / RestSharp
curl -L -X POST '/payment/kpayment/v1/rules/fees' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"fetchSurcharge": true,
"fetchApplicationFee": true,
"dealerId": 0,
"tenderType": "CREDIT",
"cardType": "VISA",
"transactionDepartment": "SERVICE",
"paymentType": "ONLINE",
"dealerUuid": "string"
}'
php / cURL
curl -L -X POST '/payment/kpayment/v1/rules/fees' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"fetchSurcharge": true,
"fetchApplicationFee": true,
"dealerId": 0,
"tenderType": "CREDIT",
"cardType": "VISA",
"transactionDepartment": "SERVICE",
"paymentType": "ONLINE",
"dealerUuid": "string"
}'
java / OkHttp
curl -L -X POST '/payment/kpayment/v1/rules/fees' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"fetchSurcharge": true,
"fetchApplicationFee": true,
"dealerId": 0,
"tenderType": "CREDIT",
"cardType": "VISA",
"transactionDepartment": "SERVICE",
"paymentType": "ONLINE",
"dealerUuid": "string"
}'
powershell / RestMethod
curl -L -X POST '/payment/kpayment/v1/rules/fees' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"fetchSurcharge": true,
"fetchApplicationFee": true,
"dealerId": 0,
"tenderType": "CREDIT",
"cardType": "VISA",
"transactionDepartment": "SERVICE",
"paymentType": "ONLINE",
"dealerUuid": "string"
}'