Search
K
Comment on page

결제 예약취소 API

예약된 결제내역을 취소할 수 있는 API 입니다.
Deprecated
이 문서는 더 이상 관리되지 않습니다.
PortOne 개발자센터를 이용해주세요.

예약된 결제가 실행되기전에 해당 예약을 취소할 수 있는 API 입니다.

post
https://api.iamport.kr
/subscribe/payments/unschedule
예약된 결제를 취소합니다.
Response Model Schema
{
"code": 0,
"message": "string",
"response": [
{
"customer_uid": "string",
"merchant_uid": "string",
"imp_uid": "string",
"schedule_at": "0",
"executed_at": "0",
"revoked_at": "0",
"amount": 0,
"name": "string",
"buyer_name": "string",
"buyer_email": "string",
"buyer_tel": "string",
"buyer_addr": "string",
"buyer_postcode": "string",
"custom_data": "string",
"schedule_status": "scheduled",
"payment_status": "paid",
"fail_reason": "string"
}
]
}