SCI Sandbox

In this site you can test your SCI or API implementation
Please Remember that every transaction that happen here is for testing purpose

ATTENTION
  • All testing use the subdomain sandbox.fasapay.com and not the main www.fasapay.com
  • All testing use sandbox only account with prefix FPX and not FasaPay account FP

Sandbox Feature :

How to use SCI Sandbox

  1. Go to Sandbox FasaPay WebSite (http://sandbox.fasapay.com/)
  2. Create Account in http://sandbox.fasapay.com/
  3. Create Store with the given STORE account
  4. Use https://sandbox.fasapay.com/sci/ not the https://sci.fasapay.com/

Example :

Before

<form method="POST" action="https://sci.fasapay.com/">
<input type="hidden" name="fp_acc" value="FP00001">
<input type="hidden" name="fp_item" value="2 pieces of Clothes">
<input type="hidden" name="fp_amnt" value="2000">
<input type="hidden" name="fp_currency" value="IDR">
<input type="hidden" name="fp_comments" value="Purchase of 2 pieces of black clothes with white collar">
<input type="hidden" name="fp_merchant_ref" value="BL002883" />
<input type="hidden" name="fp_success_url" value="http://www.domain.com/merchant/result.php" />
<input type="hidden" name="fp_success_method" value="POST" />
<input type="hidden" name="fp_fail_url" value="http://www.domain.com/merchant/cancel.php" />
<input type="hidden" name="fp_fail_method" value="GET" />
<input type="hidden" name="fp_status_url" value="http://www.domain.com/merchant/status.php" />
<input type="hidden" name="fp_status_method" value="POST" />
<!-- additional fields -->
<input type="hidden" name="track_id" value="558421222">
<input type="hidden" name="order_id" value="BJ2993800-">
<input name="" type="submit">
</form>

After changed to sandbox mode

<form method="POST" action="https://sandbox.fasapay.com/sci/">
<input type="hidden" name="fp_acc" value="FPX0001">
<input type="hidden" name="fp_item" value="2 pieces of Clothes">
<input type="hidden" name="fp_amnt" value="2000">
<input type="hidden" name="fp_currency" value="IDR">
<input type="hidden" name="fp_comments" value="Purchase of 2 pieces of black clothes with white collar">
<input type="hidden" name="fp_merchant_ref" value="BL002883" />
<input type="hidden" name="fp_success_url" value="http://www.domain.com/merchant/output.php" />
<input type="hidden" name="fp_success_method" value="POST" />
<input type="hidden" name="fp_fail_url" value="http://www.domain.com/merchant/cancel.php" />
<input type="hidden" name="fp_fail_method" value="GET" />
<input type="hidden" name="fp_status_url" value="http://www.domain.com/merchant/status.php" />
<input type="hidden" name="fp_status_method" value="POST" />
<!-- additional fields -->
<input type="hidden" name="track_id" value="558421222">
<input type="hidden" name="order_id" value="BJ2993800-">
<input name="" type="submit">
</form>

Don't forget to change the url to https://sci.fasapay.com and use FasaPay account (not the Sandbox account) after finish testing

Developer Guide for SCI Integration

For detailed guide please refer to SCI GUIDE