laketuna
laketuna

Reputation: 4080

Magento: how to get Paypal transaction ID?

I'm trying to print the Paypal transaction ID on our invoice PDF files. Can you pull this information from $order, which is an instance of Sales_Order?

I did find some database tables with paypal_ prefix, but all of them are empty, even though we have a real Paypal transaction order in our installation. Any ideas?

Upvotes: 2

Views: 3829

Answers (1)

f3ze
f3ze

Reputation: 86

Try : $transaction_id = $order->getPayment()->getLastTransId();

Upvotes: 5

Related Questions