Refund Transaction (refund)
This is an API for the merchant system to send a refund request for a transaction through the VNPAY Payment Gateway.
Note:
refund
is one of the functions restricted by VNPAY in the sandbox environment. You need to contact VNPAY for support.- See more at issue#12
Refund
import { Refund, RefundResponse, dateFormat, getDateInGMT7, VnpTransactionType, VnpLocale } from 'vnpay';
/* ... */
/**
* The date must be in GMT+7 timezone
* And formatted as `yyyyMMddHHmmss`
* Use the `getDateInGMT7` and `dateFormat` functions to convert
*/
const refundRequestDate = dateFormat(getDateInGMT7(new Date('2024/05/26')));
const orderCreatedAt = dateFormat(getDateInGMT7(new Date('2024/05/21')));
const result: RefundResponse = await vnpay.refund({
vnp_Amount: 10000,
vnp_CreateBy: 'giang',
vnp_CreateDate: refundRequestDate,
vnp_IpAddr: '127.0.0.1',
vnp_OrderInfo: 'Test order',
vnp_RequestId: '123456',
vnp_TransactionDate: orderCreatedAt,
vnp_TransactionType: VnpTransactionType.FULL_REFUND,
vnp_TxnRef: '123456',
vnp_Locale: VnpLocale.EN,
// vnp_TransactionNo: 123456, // optional
} as Refund);