Additional IPPS Data Fields
Although these may not be for everyone, these fields will help most developers if help is what
you need.
IPPS supports ten passthru fields that you can use to enter any data you would like and have it
passed through the system and returned in the post back to your script. These are handy for
entering in order id#'s or anything else. Of course your script needs to parse these fields
after the transaction is processed or nothing will happen to them. They should look like this:
<INPUT TYPE="hidden" NAME="passthru1" VALUE="whateveryouwant">
<INPUT TYPE="hidden" NAME="passthru2" VALUE="somethingelse">
<INPUT TYPE="hidden" NAME="passthru3" VALUE="123234.453656">
...and so on. Please do not use any values that contain the pipe "|" character, none of your
variables will get passed correctly.
The ADMIN_EMAIL field sends an additional transaction receipt to the email address in the value
field. This is ideal for someone who just want transaction receipts on certian products or just
wants to feel included in the order process. The field should look like this:
<INPUT TYPE="hidden" NAME="ADMIN_EMAIL" VALUE="youremail@yourwebsite.com">
The bannerimage field wil trigger the IPPS server to include a header/logo image on the
order processing page. You must make sure the the value is a fully-qualified URL, or it will
not work. Only http:// URL's are supported, https:// will not work.
<INPUT TYPE="hidden" NAME="bannerimage" VALUE="http://www.yourwebsite.com/images/banner.jpg">
The bgimage field wili trigger the IPPS server to include a background image on the
order processing page. You must make sure the the value is a fully-qualified URL, or it will
not work. Only http:// URL's are supported, https:// will not work.
<INPUT TYPE="hidden" NAME="bgimage" VALUE="http://www.yourwebsite.com/images/background.jpg">
Developers Integration Page
|
Technical Support Help Page
|