Web Link MethodQuickly redirect customers to pay using a simple hyperlink |
||||||||||||||||||||||||||||||||||||
You can link to your payment page using a standard hyperlink. Just add the correct RouteID to the URL, then when they click through they are taken to the payment gateway for payment.
<a href="http://uk.ImpulsePay.com/payforit?RouteID=XX">Pay
Now</a>
Change
the XX
to the RouteID number, as shown under the relavent tariff on the
"Add, edit or view price tariffs" page. |
||||||||||||||||||||||||||||||||||||
Developer's MethodFor those doing a more integrated setup or using custom branding |
||||||||||||||||||||||||||||||||||||
Place this form on your page to accept payments. You can edit the form to include additional data or make a call to it via a web service. CSS styling can be used and you can use an image instead of a button to better fit with your sites design. <form
action="http://uk.ImpulsePay.com/payforit"
method="post">
<input name="Button" type="submit" value="Pay with your mobile" /> <input name="RouteID" type="hidden" value="XX" /> <input name="Note" type="hidden" value="ABCD12345" /> <!-- optional --> </form> Change
the XX
to the RouteID number, as shown under the relavent tariff on the
"Add, edit or view price tariffs" page. |
||||||||||||||||||||||||||||||||||||
Server-side MethodEmbed our payment gateway into your site |
||||||||||||||||||||||||||||||||||||
|
A server-side request allows you to get the URL for the payment gateway and load this in an iFrame on your website, as the page loads up. This can optimize your payment process by removing unnecessary steps.
Change
the XX
to the RouteID number, as shown under the relavent tariff on the
"Add, edit or view price tariffs" page. Click here or here for help on how to call a URL from your server.
|
||||||||||||||||||||||||||||||||||||
Notification URLAlerts sent to you when a transaction occurs |
||||||||||||||||||||||||||||||||||||
| This is
optional for both methods and sends a payment notification to your
server via an HTTP Get request, letting you know if a payment was
accepted or declined.
Operator Values: O2, Orange, Three, T-Mobile, Virgin, Vodafone Additionally, the same Status, Note and Operator fields are appended to the success/failure redirect after a payment has been attempted. |
||||||||||||||||||||||||||||||||||||
Customise your requestOptional parameters to help customise requests |
||||||||||||||||||||||||||||||||||||
|
You can append these parameters to your URL and allow additional information to be passed into your request. If the data passed in is incorrect then the parameter will be ignored.
|
||||||||||||||||||||||||||||||||||||
Transaction StatusCheck the transaction status in real time |
||||||||||||||||||||||||||||||||||||
|
Look up the status of your transaction at any time to confirm if it has been successfully billed. This is useful to call from your success page to ensure billing has been completed correctly.
|
||||||||||||||||||||||||||||||||||||
Multi-billing TariffsAllows you to charge higher amounts |
||||||||||||||||||||||||||||||||||||
|
For tariffs that are not available on an operator we can make multiple charges to reach the desired amount, for instance charging £5 and £3 to bill £8.
|
||||||||||||||||||||||||||||||||||||
Easy MethodFor those with minimal HTML coding knowledge or experience |
|
Just add this line to your website and all the necessary code will be automatically generated. You can have multiple tariffs on the same page without problems, just grab the code for each one and add it on.
<script src="http://uk.ImpulsePay.com/XX"
data-label-XX="Buy
Now" type="text/javascript"></script>
Change
the XX
to the RouteID number, as shown under the relavent tariff on the
"Add, edit or view price tariffs" page. |
