- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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?
Solved! Go to Solution.
โ08-02-2013 01:38 PM
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If the transaction succeeded (in PHP):
if ($_POST['x_response_code'] == 1) {
// do something
}
For everything else:
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.

โ08-02-2013 07:10 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
They are the same as SIM relay response code.
โ08-02-2013 01:58 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If the transaction succeeded (in PHP):
if ($_POST['x_response_code'] == 1) {
// do something
}
For everything else:
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.

โ08-02-2013 07:10 PM

