Transaction
Transaction: Find
- Callback
- Promise
gateway.transaction.find("theTransactionId", (err, transaction) => { });
notFoundError
.
Escrow status on Braintree Marketplace transactions
Use the transaction's id to find the
escrowStatus
on
Braintree Marketplace
transactions:
- Callback
- Promise
gateway.transaction.find("transactionId", (err, transaction) => {
transaction.escrowStatus // "held"
});
Arguments
transactionId
required, StringThe unique transaction identifier.