Can we send custom and order details to Quickpay?
Yes you can. When using the so called "custom variables" you can send extra information to Quickpay when doing an authorize or subscribe. The information will then be sent/saved and can be viewed on the callbackurl or in the Quickpay-manager.
Syntax: In the form for the payment window you just set a hidden field with "CUSTOM_$key" to "$value".
Below is an example and how it will be saved in the Quickpay-manager.
| <form action="https://secure.quickpay.dk/form/" method="post"> <input type="hidden" name="protocol" value="4" /> <input type="hidden" name="msgtype" value="authorize" /> ... <input type="hidden" name="CUSTOM_comments" value="$comments" /> <input type="hidden" name="CUSTOM_name" value="$name" /> |