Hellooo ^__^
I have a page in our web app (PHP based, using authorize.net PHP api) that displays details for a perticular transaction. I need to be able to add either a void, a refund button, or not button at all. Depending on whether or not the transaction is voidable or refundable.
What do i need to check against to determine whether or not a transaction is voidable or refundable? Transaction Status? Transaction Type? If so, which values of those would be valid for a void or refund.
Thanks!
-GlitterCakes <3<3<3!
Solved! Go to Solution.
08-23-2012 08:17 AM - edited 08-23-2012 08:20 AM
void - auth_only, or after capture but unsettled.
refund, after capture and settled.
If you use the Transaction Detail API GetTransactionDetails
void - authorizedPendingCapture, capturedPendingSettlement, authorizedPendingRelease
refund - settledSuccessfully
Not sure about all the other transactionStatus, maybe one of the MOD can help you.
08-23-2012 08:54 AM
void - auth_only, or after capture but unsettled.
refund, after capture and settled.
If you use the Transaction Detail API GetTransactionDetails
void - authorizedPendingCapture, capturedPendingSettlement, authorizedPendingRelease
refund - settledSuccessfully
Not sure about all the other transactionStatus, maybe one of the MOD can help you.
08-23-2012 08:54 AM
Hopefully a mod can step in knowing the transaction statuses. You have been very helpful thank you!
08-23-2012 09:16 AM
Hi GlitterCakes,
All of the transaction statuses are already named by Raynor, he covered everything that is relevant to this scenario.
Thanks,
Joy
08-23-2012 11:13 AM
Thank you guys so much!
08-23-2012 11:18 AM