Transaction

Transaction: Find

See also the Transaction response object.

  1. Callback
  2. Promise
gateway.transaction.find("theTransactionId", (err, transaction) => {
});

If the transaction can't be found, it will return a notFoundError.

Escrow status on Braintree Marketplace transactionsanchor

Use the transaction's id to find the escrowStatus on Braintree Marketplace transactions:

  1. Callback
  2. Promise
gateway.transaction.find("transactionId", (err, transaction) => {
  transaction.escrowStatus
  // "held"
});
Arguments
transactionIdrequired, String
The unique transaction identifier.