Reputation: 283
I am passing the order id from my website to the Authorize.Net as refid
but when i try to get the transaction by passing refid
in getTransactionDetailsRequest
method then it is not recognizable.
Upvotes: 0
Views: 566
Reputation: 219814
If you read the documentation you will see you cannot retrieve transaction information using the refId
value. You must pass the transaction ID to successfully retrieve a transactions. Passing the refId
:
If included in the request, this value is included in the response. This feature might be especially useful for multi-threaded applications.
But it cannot be using in place of a transaction ID.
Upvotes: 1