Is there any way to put my cart detail to a transaction so I can view the information at braintree transaction report? Example my cart:
Array
(
[0] => Array
(
[reference] => Ordernumber
[name] => 1234
[quantity] => 1
[unit_price] => 37100
[discount_rate] => 0
[tax_rate] => 60%
)
[1] => Array
(
[reference] => Addon
[name] => dinner
[quantity] => 1
[unit_price] => 37100
[discount_rate] => 0
[tax_rate] => 60%
)
)
Full disclosure: I work at Braintree. If you have any further questions, feel free to contact our support team.
You can perform your own custom reporting so that you can customize your reports to exactly meet your needs.
There are ways to store information about transactions in our Gateway such as using customFields, but we suggest that you store your business logic data in your own systems and retrieve the relevant data from Braintree when you wish to generate a report.