Transaction

Transaction: Find

See also the Transaction response object.

  1. Python
transaction = gateway.transaction.find("the_transaction_id")

If the transaction can't be found, it will throw a NotFoundError exception.

Escrow status on Braintree Marketplace transactionsanchor

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

  1. Python
transaction = gateway.transaction.find("the_transaction_id")
transaction.escrow_status
# "held"
Arguments
transaction_idrequired, str
The unique transaction identifier.