Hi folks,
I'm working on an open source C# integration w/ Payeezy and I would like to have a comprehensive list of the response codes returned by the gateway.
I created enums for each response type and map the string value returned in the gateway_resp_code field to the enum. I have a great example but I can't post it because the forum (Mollom) thinks I'm a spammer if I include the link :/
My question:
Are there more up-to-date documents about these codes? Most of the content looks great... but then the codes get weird. After the fraud codes (F1, F2, F3, ...), there are integer codes (negative numbers, etc) and 5 digit numbers. Also, there are duplicate codes (which have different descriptions).
Here are the steps I used to get this list:
1) Go to the example for credit card payment under Docs & Sandbox
2) On right under resource summary, click response tab
3) Scroll down to gateway_resp_code and click the part which says "Click here for the list of gateway response codes returned."
4) A modal pops up with details
Please advise
Thanks
Brian
Here's the link to my code where I correlate the gateway response code with an enum value I created:
https://github.com/clifton-io/Clifton.Payment/blob/master/Clifton.Paymen...
Hi Brian,
The gateway response codes that you looked at is the correct list.
You are right about the duplicate codes but they are cases where the response code is same for several reasons that are similar.
Regards,
Payeezy team
Great- I'm glad that is the correct list. How does this look?
https://github.com/clifton-io/Clifton.Payment/blob/master/Clifton.Paymen...
I did something similar for bank response codes
https://github.com/clifton-io/Clifton.Payment/blob/master/Clifton.Paymen...
Looks good to me.