Skip to content

Send user to the IPG

In this step you should send the user to the payment page using the data you got back from the requestPayment method.

As mentioned in the previous page, the returned value contains the following:

  • url: The url that you should send the user to.
  • method: The method with which you should send the user with. Can be GET or POST depending on the driver.
  • params: The data that you should send the user with.

To send the user, create a form on the client-side and…

  1. set its action attribute to the url.
  2. set its method attribute to the method.
  3. add the params data as input elements.