Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In the part of the Internet-shop web site designated for order placement, the enterprise should create an HTML-form that redirects the customer to IPS Assist server and send the payment parameters. Specify the method (GET or POST) and the action for the sent data processing (in UTF-8 coding) in <FORM> element attributes:

...

This is the minimum set of payment parameters that is sent by the merchant, when redirecting a customer to IPS Assist server, after which the customer enters his/her personal data (name, address, e-mail, phone number etc.) and payment means data on IPS Assist authorized paymentsweb-pages.

An example of a button with all necessary parameters:

...

An example of a button with the payment parameters and a customer's personal data:

Code Block
languagexml
<FORM ACTION="https://<SERVER-NAME>/pay/order.cfm" METHOD="POST">
<INPUT TYPE="HIDDEN" NAME="Merchant_ID" VALUE="Your Merchant_ID">
<INPUT TYPE="HIDDEN" NAME="OrderNumber " VALUE="A03032011_26">
<INPUT TYPE="HIDDEN" NAME="OrderAmount" VALUE="66.66">
<INPUT TYPE="HIDDEN" NAME="OrderCurrency" VALUE="RUB">
<INPUT TYPE="HIDDEN" NAME="FirstName" VALUE="Test">
<INPUT TYPE="HIDDEN" NAME="LastName" VALUE="Testov">
<INPUT TYPE="HIDDEN" NAME="Email" VALUE="test@assist.ru">
<INPUT TYPE="HIDDEN" NAME="OrderComment" VALUE="An example of an order payment">
<INPUT TYPE="SUBMIT" NAME="Submit" VALUE="Pay">
</FORM>

For a detailed information about all the authorized request parameters refer to section "Integration".

Standard payment page template

Section
Column
width65%

Image Added

Standard payment page appearance

Column
width34%

Image Added

Mobile version of the payment page appearance

For more information about changing the appearance of payment page templates, see the Payment page section.

Back on top