Transaction

Transaction: Find

See also the Transaction response object.
  1. PHP
$transaction = $gateway->transaction()->find('the_transaction_id');
If the transaction can't be found, you'll receive a Braintree\Exception\NotFound exception.

Escrow status on Braintree Marketplace transactionsAnchorIcon

Use the transaction's id to find the escrowStatus on Braintree Marketplace transactions:
  1. PHP
$transaction = $gateway->transaction()->find("the_transaction_id");
$transaction->escrowStatus; // "held"
Arguments
transactionIdrequired, string
The unique transaction identifier.