We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44fc493 commit 039ccc9Copy full SHA for 039ccc9
TransactionReporting/get-transaction-details.php
@@ -15,6 +15,9 @@ function getTransactionDetails($transactionId)
15
$merchantAuthentication->setTransactionKey(\SampleCodeConstants::MERCHANT_TRANSACTION_KEY);
16
17
// Set the transaction's refId
18
+ // The refId is a Merchant-assigned reference ID for the request.
19
+ // If included in the request, this value is included in the response.
20
+ // This feature might be especially useful for multi-threaded applications.
21
$refId = 'ref' . time();
22
23
$request = new AnetAPI\GetTransactionDetailsRequest();
@@ -43,4 +46,4 @@ function getTransactionDetails($transactionId)
43
46
44
47
if(!defined('DONT_RUN_SAMPLES'))
45
48
getTransactionDetails("2238968786");
-?>
49
+?>
0 commit comments