⚒️Set up a webhook
Set up a webhook to handle the payment result in a reliable way.
Last updated
Set up a webhook to handle the payment result in a reliable way.
Last updated
What is a webhook?
A webhook is a mechanism for sending notifications to other services or applications when a specific event occurs. The webhook provider sends event information to the callback URL (endpoint) by creating an HTTP POST
request when the event occurs. Webhooks are much more efficient in terms of resources and communication as they can only receive information related to desired events without polling data periodically. Using webhooks, you can extend functionality by integrating with custom functions or other applications.
Is webhook integration required?
When the i'mport server sends a response to the client, the client may not receive the response after the payment process is complete for reasons, such as Wi-Fi disconnection or automatic browser reload. In this case, the i'mport server sends a webhook event to the server so that the payment information can be synchronized.
i'mport webhook is called when:
Payment is approved (all payment methods) (status :
paid
)Virtual account is issued (status :
ready
)Payment is deposited into virtual account (status :
paid
)Scheduled payment is attempted (status :
paid
orfailed
)Refund is processed from Admin console (status :
cancelled
)
A webhook is not invoked when payment fails!
Webhook URL can be set in the following two ways:
To set the webhook's notification URL to send the payment information to, log in to the Admin console and then go to Payments->Live Settings tab and set the URL in the Endpoint URL field to receive the webhook data.
Content-Type can be specified as application/json
or application/x-www-form-urlencoded
. To test the URL, click the Test Webhook button to the right of the Notification URL field.
You cannot set multiple webhook URLs.
Since an i'mport webhook endpoint is a public URL, you must verify that the request's client IP is an i'mport IP. An i'mport webhook request must originate from one of the following static IPs.
52.78.100.19
52.78.48.223
52.78.5.241 (when invoked via Test Webhook button)
When a webhook event is called, the following POST
request is generated for the notification URL endpoint.
The body of the webhook
POST
request contains the following information. The server can get the information and use it to query the payment information from the i'mport server and verify and store the payment information.
imp_uid
: payment ID
merchant_uid
: order ID
status
: payment result
Sample code of receiving a POST request to webhook endpoint URL
Create an endpoint to receive the webhook event's POST
request as follows and then parse, verify, and save the payment information.
i'mport does not guarantee the order of payment information delivery
In general, after i'mport server calls webhook, it does not guarantee the order in which the payment information arrives at the server. This is because i'mport sends a 302 redirect response to the client without waiting for a webhook response from the server. However, you can submit a special request to configure i'mport to wait for a webhook response before sending a 302 redirect or callback response to the client so that the server always receives payment information from i'mport first. To make a request to guarantee the prioritized delivery of webhooks, contact support@iamport.kr with the merchant ID.
Can you re-send a webhook?
By default, a webhook can only be sent once. However, it can be re-sent up to 5 times as per merchant's request. Webhooks are re-sent every 1 minute until a successful response is received from the merchant (up to 5 times).