Appendix F: Example HTML Forms
Below are two examples of HTML forms that can be submitted to Skrill. The first one is a basic example. The second example uses several additional features currently available with Quick Checkout. You can use these forms, ensuring that the values are replaced with your own values.
note
To request a test account and test data, contact merchantservices@skrill.com.
Simple HTML form:
<form action="https://pay.skrill.com" method="post" target="_blank">
<input type="hidden" name="pay_to_email" value="demoqco@sun-fish.com" />
<input type="hidden" name="status_url" value="https://example.com/process_payment.cgi" />
<input type="hidden" name="language" value="EN" />
<input type="hidden" name="amount" value="39.60" />
<input type="hidden" name="currency" value="GBP" />
<input type="hidden" name="detail1_description" value="Description:" />
<input type="hidden" name="detail1_text" value="Romeo and Juliet (W. Shakespeare)" />
<input type="submit" value="Pay!" />
</form>
Advanced HTML form:
<form action="https://pay.skrill.com" method="post" target="_blank">
<input type="hidden" name="pay_to_email" value="demoqco@sun-fish.com" />
<input type="hidden" name="transaction_id" value="A10005" />
<input type="hidden" name="return_url" value="https://example.com/payment_finished.html" />
<input type="hidden" name="cancel_url" value="https://example.com/payment_cancelled.html" />
<input type="hidden" name="status_url" value="https://example.com/process_payment.cgi" />
<input type="hidden" name="language" value="EN" />
<input type="hidden" name="merchant_fields" value="customer_number,session_id" />
<input type="hidden" name="customer_number" value="C1234" />
<input type="hidden" name="session_ID" value="A3DFA2234" />
<input type="hidden" name="pay_from_email" value="payer123@skrill.com" />
<input type="hidden" name="amount2_description" value="Product Price:" />
<input type="hidden" name="amount2" value="29.90" />
<input type="hidden" name="amount3_description" value="Handling Fees & Charges:" />
<input type="hidden" name="amount3" value="3.10" />
<input type="hidden" name="amount4_description" value="VAT (20%):" />
<input type="hidden" name="amount4" value="6.60" />
<input type="hidden" name="amount" value="39.60" />
<input type="hidden" name="currency" value="GBP" />
<input type="hidden" name="firstname" value="John" />
<input type="hidden" name="lastname" value="Payer" />
<input type="hidden" name="address" value="Payerstreet" />
<input type="hidden" name="postal_code" value="EC45MQ" />
<input type="hidden" name="city" value="Payertown" />
<input type="hidden" name="country" value="GBR" />
<input type="hidden" name="detail1_description" value="Product ID:" />
<input type="hidden" name="detail1_text" value="4509334" />
<input type="hidden" name="detail2_description" value="Description:" />
<input type="hidden" name="detail2_text" value="Romeo and Juliet (W. Shakespeare)" />
<input type="hidden" name="detail3_description" value="Special Conditions:" />
<input type="hidden" name="detail3_text" value="5-6 days for delivery" />
<input type="submit" value="Pay!" />
</form>