Thursday 14 July 2016

Skrill payment integration

1. For setting up both Merchant and Customer Test Account, please do the following:
Go to skrill.com and open two standard customer accounts without doing any transactions. Send the E-mail addresses of the accounts to integrationsupport@paysafe.com and inform them which one you`d like converted to Customer and which one to Merchant Test Accounts. Feel free to input any kind of data when opening up the as they will be converted. Be informed that these accounts will not be converted back to real ones and the funds added can only be used in test environment.
 
2. Your html markup will goes like below. This is just a sample or test html page. security and other things depends upon your code style.
<form action="https://pay.skrill.com?action=status_trn" method="post" name="payment_form" 
id="payment_form">
<input type="hidden" name="pay_to_email" value="demoqco@sun-fish.com">
<input type="hidden" name="transaction_id" value="">
<input type="hidden" name="return_url" value="">
<input type="hidden" name="cancel_url" value="">
<input type="hidden" name="status_url" value="">
<input type="hidden" name="language" value="EN">
<input type="hidden" name="pay_from_email" value="payer123@skrill.com">
<input type="hidden" name="amount" value="">
<input type="hidden" name="currency" value="">
<input type="hidden" name="firstname" value="">
<input type="hidden" name="lastname" value="">
<input type="hidden" name="postal_code" value="">
<input type="hidden" name="city" value="">
<input type="hidden" name="country" value="">
<input type="hidden" name="address" value="">
<input type="hidden" name="date_of_birth" value="">
<input type="hidden" name="confirmation_note" value="Thanks for depositing fund into your account">
<input type="submit" value="Pay!">
</form>
<script type='text/javascript'>
    window.onload = function () {
        document.payment_form.submit()
    }
</script>