면세상품 카드/가상계좌 결제

시 taxFreeAmount .
.

?

.

let paymentReqInfo = {
method: method,
amount: {
currency: "KRW",
value: paymentData.subscribePc,
},
customerEmail: paymentData.email,
customerName: paymentData.name,
taxFreeAmount: paymentData.subscribePc, //
};

if (method === 'CARD') {
//
paymentReqInfo.card = {
useEscrow: false,
flowMode: "DEFAULT", //
useCardPoint: false,
useAppCardOnly: false,
};
} else if (method === 'VIRTUAL_ACCOUNT') {
paymentReqInfo.virtualAccount = {
cashReceipt: {
type: "", //. '', '', ''
},
useEscrow: false, //
validHours: 24, // - (금 24)
// dueDate : 2025-07-31T00:00:00, // - (yyyy-MM-dd'T'HH:mm:ss)
};
}
Was this page helpful?