changedInput schema / properties / fields / items / enum
Previous value: -[
- "amount",
- "billKey",
- "channel",
- "group",
- "currency",
- "customer",
- "history",
- "webhook",
- "order",
- "txId",
- "storeId",
- "schedule",
- "requestAt",
- "paymentId",
- "method",
- "amount.total",
- "amount.taxFree",
- "amount.vat",
- "amount.supply",
- "amount.dc",
- "amount.cancel",
- "amount.taxFreeCancel",
- "amount.cardDc",
- "amount.easyDc",
- "amount.promotionDc",
- "amount.balance",
- "channel.type",
- "channel.id",
- "channel.key",
- "channel.name",
- "channel.pg",
- "channel.mid",
- "group.id",
- "group.name",
- "group.test",
- "history.status",
- "history.changedAt",
- "history.paid",
- "history.cancel"
-]New value: +[
+ "amount",
+ "billKey",
+ "channel",
+ "group",
+ "currency",
+ "customer",
+ "history",
+ "webhook",
+ "order",
+ "txId",
+ "storeId",
+ "schedule",
+ "requestAt",
+ "paymentId",
+ "method",
+ "failure",
+ "cancellation",
+ "amount.total",
+ "amount.taxFree",
+ "amount.vat",
+ "amount.supply",
+ "amount.dc",
+ "amount.cancel",
+ "amount.taxFreeCancel",
+ "amount.cardDc",
+ "amount.easyDc",
+ "amount.promotionDc",
+ "amount.balance",
+ "channel.type",
+ "channel.id",
+ "channel.key",
+ "channel.name",
+ "channel.pg",
+ "channel.mid",
+ "group.id",
+ "group.name",
+ "group.test",
+ "history.status",
+ "history.changedAt",
+ "history.paid",
+ "history.cancel",
+ "failure.reason",
+ "failure.pgCode",
+ "failure.pgMessage",
+ "cancellation.reason",
+ "cancellation.amount",
+ "cancellation.requestAt",
+ "cancellation.cancelAt",
+ "cancellation.trigger"
+]
addedOutput schema / properties / items / items / properties / cancellation
Added value: +{
+ "description": "결제 취소 내역. 전체 / 부분 취소된 결제건에만 존재함.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "amount": {
+ "description": "취소 금액",
+ "type": "number"
+ },
+ "cancelAt": {
+ "description": "취소 완료 시각",
+ "type": "string"
+ },
+ "reason": {
+ "description": "결제 취소 사유",
+ "type": "string"
+ },
+ "requestAt": {
+ "description": "취소 요청 시각",
+ "type": "string"
+ },
+ "trigger": {
+ "description": "취소 요청 주체 (CONSOLE, API, PORTONE_ADMIN, CHARGEBACK)",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+}