⌨️Toss
Toss simple payment integration guide
1. Configure Toss simple payment PG settings

2. Request payment
Last updated
Toss simple payment integration guide

Last updated
IMP.request_pay({
pg : 'tosspay',
pay_method : 'card',
merchant_uid: '{Merchant created Order ID}', //Example: order_no_0001
name : 'Order name: Test payment',
amount : 14000,
buyer_email : 'iamport@siot.do',
buyer_name : 'Customer name',
buyer_tel : '010-1234-5678',
buyer_addr : 'Samseong-dong, Gangnam-gu, Seoul',
buyer_postcode : '123-456',
m_redirect_url : "{URL to redirect to after payment approval}" //Example: http://yourservice.com/payments/complete
}, function(rsp) { // callback logic
//* ...Omitted... *//
});