cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

ARB Silent Post Response Codes

I have a Silent Post listener that only responds to ARB transactions and I'd like to determine from Silent Post response if renewal transaction succeeded or failed, but I can't find any definitive Authorize.Net documentation for ARB Silent Post reponse_code, response_reason_code, and response_reason_text. Can anyone point me to Silent Post documentation that is specific to ARB?

1 ACCEPTED SOLUTION

Accepted Solutions

If the transaction succeeded (in PHP):

if ($_POST['x_response_code'] == 1) {
// do something
}

For everything else:

http://www.authorize.net/support/merchant/Transaction_Response/Response_Reason_Codes_and_Response_Re...

 

There is no ARB-specific stuff, since each transaction is just a regular single transaction, and succeeds or fails on its own. Authorize.net just triggers it for you. All the complicated stuff is on the front end when you create the subscription, or when you try to restart a subscription after a failed transaction.

View solution in original post

TJPride
Expert
2 REPLIES 2

They are the same as SIM relay response code.

RaynorC1emen7
Expert

If the transaction succeeded (in PHP):

if ($_POST['x_response_code'] == 1) {
// do something
}

For everything else:

http://www.authorize.net/support/merchant/Transaction_Response/Response_Reason_Codes_and_Response_Re...

 

There is no ARB-specific stuff, since each transaction is just a regular single transaction, and succeeds or fails on its own. Authorize.net just triggers it for you. All the complicated stuff is on the front end when you create the subscription, or when you try to restart a subscription after a failed transaction.

TJPride
Expert