Umair Khan
Umair Khan

Reputation: 283

Get Authorize.Net transaction detail with the refId

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

Answers (1)

John Conde
John Conde

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

Related Questions