added
Merchant Fees column in the Payment Report Component
July 8th, 2025
A new column is now available in the Payment Report Component to display the Merchant Fees associated to the payment.

New column "Fees" to display the merchant fees for the payment
This field was already available on the list payments endpoint as merchant_fees
and represents the amount of the payment billed to the merchant, which includes fees defined by the merchant's billing profile and fees defined by the amount splits.
Add to an embedded payment report
To include this new column in your embedded Payment Report Component, update the columns to include the merchant_fees
column:
<rainforest-payment-report
session-key='REPLACE_ME'
columns='[
{"name": "Created", "type": "builtin", "value": "created"},
{"name": "Type", "type": "builtin", "value": "type"},
{"name": "Status", "type": "builtin", "value": "status"},
{"name": "Amount", "type": "builtin", "value": "amount"},
+ {"name": "Fees", "type": "builtin", "value": "merchant_fees"},
{"name": "Customer", "type": "builtin", "value": "name"},
{"name": "Method", "type": "builtin", "value": "method"},
{"name": "Merchant Name", "type": "builtin", "value": "merchant_name"}
]'
data-filters='{"merchant_id":"REPLACE_ME"}'
></rainforest-payment-report>
Payment report in Portal
The Merchant Fees column has been automatically added to the Payment report in the Portal.
Please reach out to support or your Platform Success Manager if you have any questions.