Transaction: Find
Note
Results are limited according to the PayPal Data Protection Addendum For Card Processing Products policy.
- PHP
$transaction = $gateway->transaction()->find('the_transaction_id');
Braintree\Exception\NotFound
exception.
Escrow status on Braintree Marketplace transactions
Use the transaction's id to find the
escrowStatus
on
Braintree Marketplace
transactions:
- PHP
$transaction = $gateway->transaction()->find("the_transaction_id");
$transaction->escrowStatus; // "held"
Arguments
transactionId
required, stringThe unique transaction identifier.