정산조회 API : fee 문의
안녕하세요 다음 api를 사용하고 있습니다.
수신 데이터 중 승인번호 '35178348' 건에 대해서 문의드립니다.
수신 목록 중 해당건의 데이터는 다음과 같습니다.
카드사 부담 무이자 할부인 듯 한데, fees 데이터로 'BASE' 수수료만 존재합니다.
'INSTALLMENT_DISCOUNT' 수수료없이 기본 수수료정보만 들어오는 이유를 확인하고싶습니다.
$ curl --request GET \
> --url 'https://api.tosspayments.com/v1/settlements?startDate=2025-02-09&endDate=2025-02-09' \$ curl --request GET \
> --url 'https://api.tosspayments.com/v1/settlements?startDate=2025-02-09&endDate=2025-02-09' \수신 데이터 중 승인번호 '35178348' 건에 대해서 문의드립니다.
수신 목록 중 해당건의 데이터는 다음과 같습니다.
{
"amount": 64601,
"approvedAt": "2025-02-09T06:58:32+09:00",
"cancel": null,
"card": {
"acquirerCode": "41",
"acquireStatus": "READY",
"amount": 64601,
"approveNo": "35178348",
"cardType": "신용",
"installmentPlanMonths": 5,
"interestPayer": "CARD_COMPANY",
"isInterestFree": true,
"issuerCode": "41",
"number": "54287967****867*",
"ownerType": "개인",
"useCardPoint": false
},
"currency": "KRW",
"easyPay": null,
"fee": 1492,
"fees": [
{
"fee": 1492,
"type": "BASE"
}
],
"giftCertificate": null,
"interestFee": 0,
"method": "카드",
"mId": "TP01012100",
"mobilePhone": null,
"orderId": "1474301494006-ae063bd9-f752-4633-b130-a379dddc6a0a",
"paidOutDate": "2025-02-13",
"paymentKey": "TP01020250209065811VYdf1",
"payOutAmount": 63109,
"soldDate": "2025-02-09",
"supplyAmount": 1356,
"transactionKey": "txrd_a01jkks4kdkvhqr2kge21gqawf8",
"transfer": null,
"vat": 136,
"virtualAccount": null
}{
"amount": 64601,
"approvedAt": "2025-02-09T06:58:32+09:00",
"cancel": null,
"card": {
"acquirerCode": "41",
"acquireStatus": "READY",
"amount": 64601,
"approveNo": "35178348",
"cardType": "신용",
"installmentPlanMonths": 5,
"interestPayer": "CARD_COMPANY",
"isInterestFree": true,
"issuerCode": "41",
"number": "54287967****867*",
"ownerType": "개인",
"useCardPoint": false
},
"currency": "KRW",
"easyPay": null,
"fee": 1492,
"fees": [
{
"fee": 1492,
"type": "BASE"
}
],
"giftCertificate": null,
"interestFee": 0,
"method": "카드",
"mId": "TP01012100",
"mobilePhone": null,
"orderId": "1474301494006-ae063bd9-f752-4633-b130-a379dddc6a0a",
"paidOutDate": "2025-02-13",
"paymentKey": "TP01020250209065811VYdf1",
"payOutAmount": 63109,
"soldDate": "2025-02-09",
"supplyAmount": 1356,
"transactionKey": "txrd_a01jkks4kdkvhqr2kge21gqawf8",
"transfer": null,
"vat": 136,
"virtualAccount": null
}카드사 부담 무이자 할부인 듯 한데, fees 데이터로 'BASE' 수수료만 존재합니다.
'INSTALLMENT_DISCOUNT' 수수료없이 기본 수수료정보만 들어오는 이유를 확인하고싶습니다.
