Skip to main content

sendRefundRequestToCustomer


ApiScope: payment.refundRequest.send
API Scope Level: ServiceSubscriberScope
Request Body required
    refundAmount number
    transactionID int64
    refundReason string
    paymentUser object
    id int64
    dealerAssociateUUID string
    userUUID string
    dealerDepartmentUUID string
Responses

OK


Schema

    boolean

POST /kpayment/v1/sendRefundRequestToCustomer

Request

Base URL
/payment
Body required
{
"refundAmount": 0,
"transactionID": 0,
"refundReason": "string",
"paymentUser": {
"id": 0,
"dealerAssociateUUID": "string",
"userUUID": "string",
"dealerDepartmentUUID": "string"
}
}
curl / cURL
curl -L -X POST '/payment/kpayment/v1/sendRefundRequestToCustomer' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"refundAmount": 0,
"transactionID": 0,
"refundReason": "string",
"paymentUser": {
"id": 0,
"dealerAssociateUUID": "string",
"userUUID": "string",
"dealerDepartmentUUID": "string"
}
}'