💻Generate payment URL
Learn about the payment URL generation API.
1. Overview
This document describes i'mport payment URL generation API specification. i'mport Merchants can use the service without any restrictions.
2. API URI
Payment API is exposed as REST web service.
HTTP Method : POST
Content-Type : application/json;charset=UTF-8
3. Description
Customers can access the generated payment URL to make a payment. It supports all payment methods supported by the PG. When the link expires, payment is no longer available.
4. Request message specification
Creates a payment URL.
POST
https://api.iamport.co/api/supplements/v1/link/payment
HTTP Method : POST
Content-Type : Application.json;charset=UTF-8
Request Body
Name | Type | Description |
---|---|---|
title* | String | Title of the bridge page |
user_code* | String | Merchant ID |
amount* | integer | Amount |
merchant_uid* | String | Order ID |
name* | String | Product name |
tax_free | integer | Tax free amount |
currency* | String | Currency code |
language | String | Payment window language -ko -en |
buyer_name | String | Customer name |
buyer_tel* | String | Customer phone |
buyer_addr | String | Customer address |
buyer_email | String | Customer email |
buyer_postcode | String | Customer zip |
custom_data | Object | Custom data |
notice_url | String | Notification URL to receive payment result |
expire_at* | String | Page expiration |
display_language | String | Bridge page language -ko : Korean -en : English |
pay_methods* | Object | pg * string PG code pay_method * string Payment method code label * string Payment method shown on bridge page |
#Sample JSON request message
#Sample payment (bridge) page
Sample response URL page displayed when payment URL API request is successful.
5. Disabling payment URL
Append the last part of the response (shortenedUrl) URL to the payment URI API address and call it.
HTTP Method : PUT
For the following API response
{
"shortenedUrl": "https://dev.impay.link/4bdf239e"
}
https://api.iamport.co/api/supplements/v1/link/payment/4bdf239e
Call the above payment URL to disable it.
Last updated