Hi,
I don't want to display receipt page to user post payment transaction completed(click on Pay button) instead want to redirect response to my custom designed page (or local/calling application's callback page).
using "https://accept.authorize.net/payment/payment" to call/open payment page.
Regards,
Gaurav
07-12-2017 06:22 AM
When calling the getHostedPaymentPageRequest API method, if the value of the showReceipt parameter is false, the browser will return directly to the return URL. When showReceipt is false, a return URL must be provided in the url parameter. Otherwise the receipt page will be shown.
{"showReceipt" : false, "url":"https://yoursite.com/receipt", "urlText": "Continue", "cancelUrl": "https://yoursite.com/cancel", "cancelUrlText": "Cancel"}
07-12-2017 07:21 AM