I am trying to implement the FirstData - Payeezy payment gateway for card transactions in my website, once the user clicks pay button, the Hosted Checkout page (Payeezy payment gateway is opened).
Sample code how I opened the payeezy gateway page:
<form action="https://checkout.globalgatewaye4.firstdata.com/payment" method="post">
<input name="x_login" value="WSPEXA00101" type="hidden">
<input name="x_amount" value="1.23" type="hidden">
<input name="x_fp_sequence" value="123456" type="hidden">
<input name="x_fp_timestamp" value="1191600622" type="hidden">
<input name="x_fp_hash" value="4b04d15ccd9007658c2dadc679899ec4" type="hidden">
<input name="x_show_form" value="PAYMENT_FORM" type="hidden">
<input value="Checkout" type="submit">
</form>
And in here, I am able to make the card transaction successfully also I can see the receipt printed in the gateway.
But, I want the transaction result details back to my website . So How do I retrieve them ?
I am following this official manual, https://support.payeezy.com/hc/en-us/articles/203992129-Hosted-Checkout-Payment-Pages-Integration-Manual
And also I have gone through the manual, there are few things called as silent post and relay response using which I have to receive the transaction details but I couldn't figure how to implement those two techniques?
Note: I am using react js as front end and node js as backend. And I am using sandbox account