Transaction: Find
Note
Results are limited according to the PayPal Data Protection Addendum For Card Processing Products policy.
- Java
Transaction transaction = gateway.transaction().find("the_transaction_id");NotFoundException.
Escrow status on Braintree Marketplace transactions
Use the transaction's id to find the
escrowStatus
on
Braintree Marketplace
transactions:
- Java
Transaction transaction = gateway.transaction().find("the_transaction_id");
transaction.getEscrowStatus(); // "held"Arguments
transactionIdrequired, stringThe unique transaction identifier.